aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-21 11:52:01 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-21 13:14:14 -0400
commitb420da4cf80e9fc53db0a085514b9491b750812f (patch)
tree408470cbf2c8c019dbc765cbd0dffefa4401eb27 /src/or
parent2d20cbf837263898ce45c1e0a0f11b9e1126eeba (diff)
downloadtor-b420da4cf80e9fc53db0a085514b9491b750812f.tar.gz
tor-b420da4cf80e9fc53db0a085514b9491b750812f.zip
Rectify include paths (automated)
Diffstat (limited to 'src/or')
-rw-r--r--src/or/circuitlist.c6
-rw-r--r--src/or/config.c2
-rw-r--r--src/or/main.c2
-rw-r--r--src/or/or.h2
-rw-r--r--src/or/relay.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index c3d017bf8d..1af970040d 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -86,9 +86,9 @@
#include "or/routerlist.h"
#include "or/routerset.h"
#include "or/channelpadding.h"
-#include "common/compress_lzma.h"
-#include "common/compress_zlib.h"
-#include "common/compress_zstd.h"
+#include "lib/compress/compress_lzma.h"
+#include "lib/compress/compress_zlib.h"
+#include "lib/compress/compress_zstd.h"
#include "ht.h"
diff --git a/src/or/config.c b/src/or/config.c
index 8c6e2382fb..37e6a6f921 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -70,7 +70,7 @@
#include "or/circuitmux.h"
#include "or/circuitmux_ewma.h"
#include "or/circuitstats.h"
-#include "common/compress.h"
+#include "lib/compress/compress.h"
#include "or/config.h"
#include "or/connection.h"
#include "or/connection_edge.h"
diff --git a/src/or/main.c b/src/or/main.c
index 4ca180af2c..35d6d62bb6 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -61,7 +61,7 @@
#include "or/circuituse.h"
#include "or/circuitmux_ewma.h"
#include "or/command.h"
-#include "common/compress.h"
+#include "lib/compress/compress.h"
#include "or/config.h"
#include "or/confparse.h"
#include "or/connection.h"
diff --git a/src/or/or.h b/src/or/or.h
index 55364beee9..66e69f3caa 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -70,7 +70,7 @@
#include "common/tortls.h"
#include "common/torlog.h"
#include "common/container.h"
-#include "common/compress.h"
+#include "lib/compress/compress.h"
#include "common/address.h"
#include "common/compat_libevent.h"
#include "ht.h"
diff --git a/src/or/relay.c b/src/or/relay.c
index 8a97d72f95..230d141305 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -55,7 +55,7 @@
#include "or/circuitbuild.h"
#include "or/circuitlist.h"
#include "or/circuituse.h"
-#include "common/compress.h"
+#include "lib/compress/compress.h"
#include "or/config.h"
#include "or/connection.h"
#include "or/connection_edge.h"