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/tools/tor-gencert.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/tools/tor-gencert.c')
-rw-r--r-- | src/tools/tor-gencert.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c index 1dd9c9e59b..abb2ac298a 100644 --- a/src/tools/tor-gencert.c +++ b/src/tools/tor-gencert.c @@ -27,10 +27,10 @@ #define CRYPTO_PRIVATE -#include "../common/compat.h" -#include "../common/util.h" -#include "../common/log.h" -#include "../common/crypto.h" +#include "compat.h" +#include "util.h" +#include "log.h" +#include "crypto.h" #define IDENTITY_KEY_BITS 3072 #define SIGNING_KEY_BITS 1024 |