diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 16:25:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 16:28:08 -0400 |
commit | d8b34e0886c9fd08fb51e0de4fadca7da82056ff (patch) | |
tree | 5b2a8cea0d0a683f7ab1e71a158c28021f9dfb99 /src/lib/tls/buffers_tls.c | |
parent | be40ad51b68fa87bafb88e55db7856d373274a4d (diff) | |
download | tor-d8b34e0886c9fd08fb51e0de4fadca7da82056ff.tar.gz tor-d8b34e0886c9fd08fb51e0de4fadca7da82056ff.zip |
Move buffers into container
Split the network-only and compression-only parts of buffers into
the appropriate modules.
Diffstat (limited to 'src/lib/tls/buffers_tls.c')
-rw-r--r-- | src/lib/tls/buffers_tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/buffers_tls.c b/src/lib/tls/buffers_tls.c index 0f9dd7a4d2..243e0eb0bc 100644 --- a/src/lib/tls/buffers_tls.c +++ b/src/lib/tls/buffers_tls.c @@ -7,7 +7,7 @@ #define BUFFERS_PRIVATE #include "orconfig.h" #include <stddef.h> -#include "common/buffers.h" +#include "lib/container/buffers.h" #include "lib/tls/buffers_tls.h" #include "lib/cc/torint.h" #include "lib/log/torlog.h" |