diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-08-08 05:50:31 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-08-08 05:50:31 +0000 |
commit | 3fc04529d4178f9331f9fd22ff077501bddf251e (patch) | |
tree | d7fff8d4caf0ed0260fb1246cc884a128f6514a2 /src/or/config.c | |
parent | 50f5f6367854df38c7fa995aa778421b276177c1 (diff) | |
download | tor-3fc04529d4178f9331f9fd22ff077501bddf251e.tar.gz tor-3fc04529d4178f9331f9fd22ff077501bddf251e.zip |
r14093@catbus: nickm | 2007-08-08 01:49:54 -0400
Include fewer redundant headers; use the compiler search paths better.
svn:r11060
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c index 732bb0d784..e1260e96a2 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -17,7 +17,6 @@ const char config_c_id[] = \ #ifdef MS_WINDOWS #include <shlobj.h> #endif -#include "../common/aes.h" /** Enumeration of types which option values can take */ typedef enum config_type_t { @@ -4556,8 +4555,9 @@ getinfo_helper_config(control_connection_t *conn, return 0; } -#include "../common/ht.h" -#include "../common/test.h" +#include "aes.h" +#include "ht.h" +#include "test.h" extern const char aes_c_id[]; extern const char compat_c_id[]; |