aboutsummaryrefslogtreecommitdiff
path: root/src/or/eventdns.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-08-08 05:50:31 +0000
committerNick Mathewson <nickm@torproject.org>2007-08-08 05:50:31 +0000
commit3fc04529d4178f9331f9fd22ff077501bddf251e (patch)
treed7fff8d4caf0ed0260fb1246cc884a128f6514a2 /src/or/eventdns.c
parent50f5f6367854df38c7fa995aa778421b276177c1 (diff)
downloadtor-3fc04529d4178f9331f9fd22ff077501bddf251e.tar
tor-3fc04529d4178f9331f9fd22ff077501bddf251e.tar.gz
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/eventdns.c')
-rw-r--r--src/or/eventdns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/eventdns.c b/src/or/eventdns.c
index 2ecdfc0d0..1fb458118 100644
--- a/src/or/eventdns.c
+++ b/src/or/eventdns.c
@@ -123,8 +123,8 @@ typedef int socklen_t;
#endif
/* XXXX020 These are for debugging possible memory leaks. */
-#include "../common/util.h"
-#include "../common/compat.h"
+#include "util.h"
+#include "compat.h"
#define malloc(x) tor_malloc(x)
#define realloc(x,y) tor_realloc((x),(y))
#define free(x) tor_free(x)