diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-27 09:49:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-27 10:04:41 -0400 |
commit | 55b793936725aba0c615c748838187a589c5d6d4 (patch) | |
tree | 779aec5890b8fd40f9c67118fe3eab3f6c806dbd /src/lib | |
parent | bee580ddbaabcd8d6066761cce385c00d75dd2c5 (diff) | |
download | tor-55b793936725aba0c615c748838187a589c5d6d4.tar.gz tor-55b793936725aba0c615c748838187a589c5d6d4.zip |
Fix up include paths for sandbox.h (automated)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/crypt_ops/crypto.c | 2 | ||||
-rw-r--r-- | src/lib/crypt_ops/crypto_rand.c | 2 | ||||
-rw-r--r-- | src/lib/sandbox/sandbox.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/crypt_ops/crypto.c b/src/lib/crypt_ops/crypto.c index fcd6945c84..9df9e36442 100644 --- a/src/lib/crypt_ops/crypto.c +++ b/src/lib/crypt_ops/crypto.c @@ -67,7 +67,7 @@ ENABLE_GCC_WARNING(redundant-decls) #include "lib/crypt_ops/aes.h" #include "common/util.h" #include "common/compat.h" -#include "common/sandbox.h" +#include "lib/sandbox/sandbox.h" #include "common/util_format.h" #include "keccak-tiny/keccak-tiny.h" diff --git a/src/lib/crypt_ops/crypto_rand.c b/src/lib/crypt_ops/crypto_rand.c index bff32c7ec6..bf6a35ddbc 100644 --- a/src/lib/crypt_ops/crypto_rand.c +++ b/src/lib/crypt_ops/crypto_rand.c @@ -25,7 +25,7 @@ #include "common/compat.h" #include "lib/crypt_ops/compat_openssl.h" #include "lib/crypt_ops/crypto_util.h" -#include "common/sandbox.h" +#include "lib/sandbox/sandbox.h" #include "lib/testsupport/testsupport.h" #include "lib/log/torlog.h" #include "common/util.h" diff --git a/src/lib/sandbox/sandbox.c b/src/lib/sandbox/sandbox.c index 9842fd9831..f6f445df02 100644 --- a/src/lib/sandbox/sandbox.c +++ b/src/lib/sandbox/sandbox.c @@ -32,7 +32,7 @@ #include <string.h> #include <stdlib.h> -#include "common/sandbox.h" +#include "lib/sandbox/sandbox.h" #include "lib/container/map.h" #include "lib/err/torerr.h" #include "lib/log/torlog.h" |