diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-06 18:05:14 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-14 16:07:03 -0500 |
commit | f6b8c7da66bf93a9505b397661616cc4af2a34f6 (patch) | |
tree | 539837644546df6f7d7ec7b40d43843674d3a83d /src/feature | |
parent | c9f9c9bc497bbfdd5e1acdc37f84da5f3f7396c2 (diff) | |
download | tor-f6b8c7da66bf93a9505b397661616cc4af2a34f6.tar.gz tor-f6b8c7da66bf93a9505b397661616cc4af2a34f6.zip |
Move buffers.c out of lib/containers to resolve a circularity.
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/control/control.c | 2 | ||||
-rw-r--r-- | src/feature/stats/geoip_stats.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/control/control.c b/src/feature/control/control.c index b31b448e96..11e722c3a8 100644 --- a/src/feature/control/control.c +++ b/src/feature/control/control.c @@ -87,7 +87,7 @@ #include "feature/rend/rendservice.h" #include "feature/stats/geoip_stats.h" #include "feature/stats/predict_ports.h" -#include "lib/container/buffers.h" +#include "lib/buf/buffers.h" #include "lib/crypt_ops/crypto_rand.h" #include "lib/crypt_ops/crypto_util.h" #include "lib/encoding/confline.h" diff --git a/src/feature/stats/geoip_stats.c b/src/feature/stats/geoip_stats.c index 1a4f8ddfb0..3106c6c82c 100644 --- a/src/feature/stats/geoip_stats.c +++ b/src/feature/stats/geoip_stats.c @@ -30,7 +30,7 @@ #include "core/or/or.h" #include "ht.h" -#include "lib/container/buffers.h" +#include "lib/buf/buffers.h" #include "app/config/config.h" #include "feature/control/control.h" #include "feature/client/dnsserv.h" |