diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
commit | 3dd9240cc311f3c617d68764a6e6a1a21a77c6a6 (patch) | |
tree | ef08093422e4db1e2830542edf6f0a44e5d4726e /config.h.in | |
parent | 7e17343965b7275367a4f0ceb90969867f3f1410 (diff) | |
download | tcpdump-3dd9240cc311f3c617d68764a6e6a1a21a77c6a6.tar.gz |
Do case-insensitive comparisons assuming ASCII strings.
Do the case-insensitive comparisons in a locale-independent fashion that
only maps ASCII letters, in the standard English-language fashion; that
way, we don't get bitten by, for example, Turkish having separate "i
with dot" and "i without dot" letters, with lower-case "i with dot" being
mapped to upper-case "I with dot" rather than being mapped to "I".
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in index fa38d391..ee3c1fec 100644 --- a/config.h.in +++ b/config.h.in @@ -187,9 +187,6 @@ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H -/* Define to 1 if you have the `strcasecmp' function. */ -#undef HAVE_STRCASECMP - /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP |