Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
55b79393
Commit
55b79393
authored
Jun 27, 2018
by
Nick Mathewson
🐛
Browse files
Fix up include paths for sandbox.h (automated)
parent
bee580dd
Changes
15
Hide whitespace changes
Inline
Side-by-side
src/common/compat.c
View file @
55b79393
...
...
@@ -129,7 +129,7 @@ SecureZeroMemory(PVOID ptr, SIZE_T cnt)
#include "lib/container/smartlist.h"
#include "lib/wallclock/tm_cvt.h"
#include "lib/net/address.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
/** As open(path, flags, mode), but return an fd with the close-on-exec mode
* set. */
...
...
src/common/storagedir.c
View file @
55b79393
...
...
@@ -5,7 +5,7 @@
#include "common/compat.h"
#include "common/confline.h"
#include "common/memarea.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "common/storagedir.h"
#include "lib/log/torlog.h"
#include "common/util.h"
...
...
src/common/util.c
View file @
55b79393
...
...
@@ -21,7 +21,7 @@
#include "lib/container/smartlist.h"
#include "lib/fdio/fdio.h"
#include "lib/net/address.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "lib/err/backtrace.h"
#include "common/util_process.h"
#include "common/util_format.h"
...
...
src/lib/crypt_ops/crypto.c
View file @
55b79393
...
...
@@ -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"
...
...
src/lib/crypt_ops/crypto_rand.c
View file @
55b79393
...
...
@@ -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"
...
...
src/lib/sandbox/sandbox.c
View file @
55b79393
...
...
@@ -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"
...
...
src/or/config.c
View file @
55b79393
...
...
@@ -98,7 +98,7 @@
#include "or/hs_config.h"
#include "or/rephist.h"
#include "or/router.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "common/util.h"
#include "or/routerlist.h"
#include "or/routerset.h"
...
...
src/or/connection.c
View file @
55b79393
...
...
@@ -102,7 +102,7 @@
#include "or/routerlist.h"
#include "or/transports.h"
#include "or/routerparse.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#ifdef HAVE_PWD_H
#include <pwd.h>
...
...
src/or/dns.c
View file @
55b79393
...
...
@@ -63,7 +63,7 @@
#include "or/relay.h"
#include "or/router.h"
#include "ht.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "or/edge_connection_st.h"
#include "or/or_circuit_st.h"
...
...
src/or/main.c
View file @
55b79393
...
...
@@ -111,7 +111,7 @@
#include "common/util_process.h"
#include "or/ext_orport.h"
#include "common/memarea.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include <event2/event.h>
...
...
src/or/routerlist.c
View file @
55b79393
...
...
@@ -119,7 +119,7 @@
#include "or/routerlist.h"
#include "or/routerparse.h"
#include "or/routerset.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "or/torcert.h"
#include "or/dirauth/dirvote.h"
...
...
src/or/routerparse.c
View file @
55b79393
...
...
@@ -74,7 +74,7 @@
#include "or/routerkeys.h"
#include "or/routerlist.h"
#include "or/routerparse.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "or/shared_random_client.h"
#include "or/torcert.h"
#include "or/voting_schedule.h"
...
...
src/or/statefile.c
View file @
55b79393
...
...
@@ -40,7 +40,7 @@
#include "or/main.h"
#include "or/rephist.h"
#include "or/router.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "or/statefile.h"
/** A list of state-file "abbreviations," for compatibility. */
...
...
src/test/test_options.c
View file @
55b79393
...
...
@@ -15,7 +15,7 @@
#include "or/main.h"
#include "test/log_test_helpers.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include "common/memarea.h"
#include "or/policies.h"
#include "test/test_helpers.h"
...
...
src/tools/tor-resolve.c
View file @
55b79393
...
...
@@ -8,7 +8,7 @@
#include "common/util.h"
#include "lib/net/address.h"
#include "lib/log/torlog.h"
#include "
common
/sandbox.h"
#include "
lib/sandbox
/sandbox.h"
#include <stdio.h>
#include <stdlib.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment