aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-21 12:47:11 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-21 13:19:00 -0400
commitaccf239fa3e84451711a25a96ddb13877fd9fcfa (patch)
tree2063992761a8ec44b050ddfb7d86525ee1f009f5 /src/common
parent25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0 (diff)
downloadtor-accf239fa3e84451711a25a96ddb13877fd9fcfa.tar.gz
tor-accf239fa3e84451711a25a96ddb13877fd9fcfa.zip
Rectify include paths (automated)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/address_set.c2
-rw-r--r--src/common/compat_libevent.c2
-rw-r--r--src/common/container.c2
-rw-r--r--src/common/util.c2
-rw-r--r--src/common/workqueue.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/common/address_set.c b/src/common/address_set.c
index 763db64280..65c4cbf1e1 100644
--- a/src/common/address_set.c
+++ b/src/common/address_set.c
@@ -15,7 +15,7 @@
#include "common/address.h"
#include "common/compat.h"
#include "common/container.h"
-#include "common/crypto_rand.h"
+#include "lib/crypt_ops/crypto_rand.h"
#include "common/util.h"
#include "siphash.h"
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c
index c99de1ac34..e3216bfc44 100644
--- a/src/common/compat_libevent.c
+++ b/src/common/compat_libevent.c
@@ -11,7 +11,7 @@
#define COMPAT_LIBEVENT_PRIVATE
#include "common/compat_libevent.h"
-#include "common/crypto_rand.h"
+#include "lib/crypt_ops/crypto_rand.h"
#include "common/util.h"
#include "common/torlog.h"
diff --git a/src/common/container.c b/src/common/container.c
index c66ea012a9..c30e84ba24 100644
--- a/src/common/container.c
+++ b/src/common/container.c
@@ -15,7 +15,7 @@
#include "common/util.h"
#include "common/torlog.h"
#include "common/container.h"
-#include "common/crypto_digest.h"
+#include "lib/crypt_ops/crypto_digest.h"
#include <stdlib.h>
#include <string.h>
diff --git a/src/common/util.c b/src/common/util.c
index f9d64cfb90..fd1bb815d4 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -16,7 +16,7 @@
#define UTIL_PRIVATE
#include "common/util.h"
#include "common/torlog.h"
-#include "common/crypto_digest.h"
+#include "lib/crypt_ops/crypto_digest.h"
#include "lib/cc/torint.h"
#include "common/container.h"
#include "common/address.h"
diff --git a/src/common/workqueue.c b/src/common/workqueue.c
index 0d31a2ecca..be51e4f106 100644
--- a/src/common/workqueue.c
+++ b/src/common/workqueue.c
@@ -27,7 +27,7 @@
#include "common/compat.h"
#include "common/compat_libevent.h"
#include "common/compat_threads.h"
-#include "common/crypto_rand.h"
+#include "lib/crypt_ops/crypto_rand.h"
#include "common/util.h"
#include "common/workqueue.h"
#include "tor_queue.h"