diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-05 13:53:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-05 13:53:17 -0400 |
commit | 3d610363eff2fe70d3775a66a97f844956480141 (patch) | |
tree | 4a489e0d7c684f6800ab9c404e6d2be14fb1c917 /src/lib/container/smartlist.c | |
parent | fecb8214d5e95ad605e8b0d431bc332e07f2ad3f (diff) | |
download | tor-3d610363eff2fe70d3775a66a97f844956480141.tar.gz tor-3d610363eff2fe70d3775a66a97f844956480141.zip |
Include compat_string.h in smartlist.c
We need this for strcasecmp on (some) Windows build environments.
Fix from Gisle Vanem.
Diffstat (limited to 'src/lib/container/smartlist.c')
-rw-r--r-- | src/lib/container/smartlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/container/smartlist.c b/src/lib/container/smartlist.c index 63c50e045d..c3abbff513 100644 --- 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" |