summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2015-02-27 15:24:21 +0100
committerNick Mathewson <nickm@torproject.org>2015-03-14 13:00:05 -0400
commit5176f6f103f3b8b7e5c930c163d2926cf0da6f9b (patch)
tree40aa624b6a78b83c18892fe27d6b3630f30e021c /src/common
parent7a86d53deef573e110da9af35c9283349942c962 (diff)
downloadtor-5176f6f103f3b8b7e5c930c163d2926cf0da6f9b.tar.gz
tor-5176f6f103f3b8b7e5c930c163d2926cf0da6f9b.zip
Remove relative paths to header files.
The paths are already in the directory search path of the compiler therefore no need to include them in the source code.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/crypto.c4
-rw-r--r--src/common/tortls.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 218c7bea1e..91c4025ac2 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -51,9 +51,9 @@
#define CRYPTO_PRIVATE
#include "crypto.h"
-#include "../common/torlog.h"
+#include "torlog.h"
#include "aes.h"
-#include "../common/util.h"
+#include "util.h"
#include "container.h"
#include "compat.h"
#include "sandbox.h"
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 97a82bf6e1..32106eb2df 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -789,7 +789,7 @@ const char UNRESTRICTED_SERVER_CIPHER_LIST[] =
/** List of ciphers that clients should advertise, omitting items that
* our OpenSSL doesn't know about. */
static const char CLIENT_CIPHER_LIST[] =
-#include "./ciphers.inc"
+#include "ciphers.inc"
/* Tell it not to use SSLv2 ciphers, so that it can select an SSLv3 version
* of any cipher we say. */
"!SSLv2"
@@ -804,7 +804,7 @@ typedef struct cipher_info_t { unsigned id; const char *name; } cipher_info_t;
static const cipher_info_t CLIENT_CIPHER_INFO_LIST[] = {
#define CIPHER(id, name) { id, name },
#define XCIPHER(id, name) { id, #name },
-#include "./ciphers.inc"
+#include "ciphers.inc"
#undef CIPHER
#undef XCIPHER
};