tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 01d729cbfe88e8a77b7bd42434e32771402f3fe7
parent a0f051137de293342d692df1d2cfa1386e5e7769
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue,  8 May 2018 20:20:54 -0400

Fix compilation of test_addr.c

This needs to include crypto_rand.h (which it didn't before it was
merged).

Diffstat:
Msrc/test/test_addr.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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"