diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-08 20:20:54 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-08 20:20:54 -0400 |
commit | 01d729cbfe88e8a77b7bd42434e32771402f3fe7 (patch) | |
tree | 8365145d9536bc4373d07c51328ca3a256278f67 /src/test/test_addr.c | |
parent | a0f051137de293342d692df1d2cfa1386e5e7769 (diff) | |
download | tor-01d729cbfe88e8a77b7bd42434e32771402f3fe7.tar.gz tor-01d729cbfe88e8a77b7bd42434e32771402f3fe7.zip |
Fix compilation of test_addr.c
This needs to include crypto_rand.h (which it didn't before it was
merged).
Diffstat (limited to 'src/test/test_addr.c')
-rw-r--r-- | src/test/test_addr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_addr.c b/src/test/test_addr.c index 505e1533d4..40db31320f 100644 --- a/src/test/test_addr.c +++ b/src/test/test_addr.c @@ -6,6 +6,7 @@ #define ADDRESSMAP_PRIVATE #include "orconfig.h" #include "or.h" +#include "crypto_rand.h" #include "test.h" #include "addressmap.h" #include "log_test_helpers.h" |