tor

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

commit e69a4ad6b321dbdb63236687ac8924c301c60f9d
parent 1a6060fa4263d20d3c1ccf29163165126a413957
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue,  6 Nov 2018 15:39:58 -0500

Add a user of CTASSERT().

Diffstat:
Msrc/lib/net/address.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/lib/net/address.c b/src/lib/net/address.c @@ -40,6 +40,7 @@ #include "lib/net/address.h" #include "lib/net/socket.h" +#include "lib/cc/ctassert.h" #include "lib/container/smartlist.h" #include "lib/ctime/di_ops.h" #include "lib/log/log.h" @@ -98,6 +99,7 @@ #if AF_UNSPEC != 0 #error We rely on AF_UNSPEC being 0. Let us know about your platform, please! #endif +CTASSERT(AF_UNSPEC == 0); /** Convert the tor_addr_t in <b>a</b>, with port in <b>port</b>, into a * sockaddr object in *<b>sa_out</b> of object size <b>len</b>. If not enough