diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 10:53:36 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 11:03:39 -0400 |
commit | 727db7aeb9e3e4355b9a2fd065f2b7e52f1082b1 (patch) | |
tree | 5ca0fe29c9c8fbbbb0adda5af144247a18556eb7 /src/common | |
parent | a403ee6bb31168e19cf4173fff0e9acf9548231f (diff) | |
download | tor-727db7aeb9e3e4355b9a2fd065f2b7e52f1082b1.tar.gz tor-727db7aeb9e3e4355b9a2fd065f2b7e52f1082b1.zip |
Rectify include paths (automated)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/aes.c | 2 | ||||
-rw-r--r-- | src/common/crypto_pwbox.c | 2 | ||||
-rw-r--r-- | src/common/util.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/aes.c b/src/common/aes.c index bdefc2b555..70e48a74f3 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -39,7 +39,7 @@ ENABLE_GCC_WARNING(redundant-decls) #include "common/aes.h" #include "common/util.h" #include "common/torlog.h" -#include "common/di_ops.h" +#include "lib/ctime/di_ops.h" #ifdef ANDROID /* Android's OpenSSL seems to have removed all of its Engine support. */ diff --git a/src/common/crypto_pwbox.c b/src/common/crypto_pwbox.c index 5ffe138ee2..799a8799e6 100644 --- a/src/common/crypto_pwbox.c +++ b/src/common/crypto_pwbox.c @@ -14,7 +14,7 @@ #include "common/crypto_rand.h" #include "common/crypto_s2k.h" #include "common/crypto_util.h" -#include "common/di_ops.h" +#include "lib/ctime/di_ops.h" #include "common/util.h" #include "trunnel/pwbox.h" diff --git a/src/common/util.h b/src/common/util.h index 8761e455fd..b3c17db248 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -14,7 +14,7 @@ #include "orconfig.h" #include "common/torint.h" #include "common/compat.h" -#include "common/di_ops.h" +#include "lib/ctime/di_ops.h" #include "common/testsupport.h" #include <stdio.h> #include <stdlib.h> |