summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNathan Freitas <nathan@freitas.net>2009-09-29 00:44:39 -0400
committerNick Mathewson <nickm@torproject.org>2009-09-29 00:52:52 -0400
commit8c585cce3987b04335acc6eebaa9ded3216b6e13 (patch)
treec8da3fcd72333a5720d6de9d384e01e29f4185ba /src/common
parent2e70642c3a5dfbbb76cd9d04351e54530646b19a (diff)
downloadtor-8c585cce3987b04335acc6eebaa9ded3216b6e13.tar.gz
tor-8c585cce3987b04335acc6eebaa9ded3216b6e13.zip
Include util.h and log.h as relative paths.
This shouldn't be necessary, but apparently the Android cross-compiler doesn't respect -I as well as it should. (-I is supposed to add to the *front* of the search path. Android's gcc wrapper apparently likes to add to the end. This is broken, but we need to work around it.)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/crypto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 4a61d3faf3..2927aa2b5b 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -50,9 +50,9 @@
#define CRYPTO_PRIVATE
#include "crypto.h"
-#include "log.h"
+#include "../common/log.h"
#include "aes.h"
-#include "util.h"
+#include "../common/util.h"
#include "container.h"
#include "compat.h"