tor

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

commit 3d610363eff2fe70d3775a66a97f844956480141
parent fecb8214d5e95ad605e8b0d431bc332e07f2ad3f
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu,  5 Jul 2018 13:53:17 -0400

Include compat_string.h in smartlist.c

We need this for strcasecmp on (some) Windows build environments.

Fix from Gisle Vanem.

Diffstat:
Msrc/lib/container/smartlist.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/lib/container/smartlist.c b/src/lib/container/smartlist.c @@ -21,6 +21,7 @@ #include "lib/defs/digest_sizes.h" #include "lib/ctime/di_ops.h" #include "lib/string/compat_ctype.h" +#include "lib/string/compat_string.h" #include "lib/string/util_string.h" #include "lib/string/printf.h"