summaryrefslogtreecommitdiff
path: root/src/lib/net
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-11-06 20:27:43 -0500
committerNick Mathewson <nickm@torproject.org>2018-11-14 16:07:35 -0500
commite429e31ad1c3000d814f3172fcd3f7c433ee3219 (patch)
tree9bcd3f344b7cb4e2e6e38155f5a51e70ac497ae8 /src/lib/net
parentc0a7527eb8590b39f11dd8b0ae18794dfc63a934 (diff)
downloadtor-e429e31ad1c3000d814f3172fcd3f7c433ee3219.tar.gz
tor-e429e31ad1c3000d814f3172fcd3f7c433ee3219.zip
Normalize .may_include to always have paths, and paths to include
Diffstat (limited to 'src/lib/net')
-rw-r--r--src/lib/net/.may_include4
-rw-r--r--src/lib/net/address.c2
-rw-r--r--src/lib/net/resolve.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/net/.may_include b/src/lib/net/.may_include
index d34aaed2ca..e4368f799b 100644
--- a/src/lib/net/.may_include
+++ b/src/lib/net/.may_include
@@ -1,6 +1,6 @@
orconfig.h
-siphash.h
-ht.h
+ext/siphash.h
+ext/ht.h
lib/arch/*.h
lib/buf/*.h
diff --git a/src/lib/net/address.c b/src/lib/net/address.c
index a351b9df28..240201d7b6 100644
--- a/src/lib/net/address.c
+++ b/src/lib/net/address.c
@@ -53,7 +53,7 @@
#include "lib/string/printf.h"
#include "lib/string/util_string.h"
-#include "siphash.h"
+#include "ext/siphash.h"
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
diff --git a/src/lib/net/resolve.c b/src/lib/net/resolve.c
index 7c8df3e307..01f7882964 100644
--- a/src/lib/net/resolve.c
+++ b/src/lib/net/resolve.c
@@ -16,8 +16,8 @@
#include "lib/string/parse_int.h"
#include "lib/string/util_string.h"
-#include "siphash.h"
-#include "ht.h"
+#include "ext/siphash.h"
+#include "ext/ht.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>