diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-16 18:19:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-16 18:19:18 +0000 |
commit | 74e133858878bf14222273726f8b9d72b39df01e (patch) | |
tree | d56edec4654a053a4c4e7421273a3f229d689e7d /string | |
parent | 91c8a74b8b9f7bf24aae101190750c2ec7b9ab23 (diff) | |
download | glibc-74e133858878bf14222273726f8b9d72b39df01e.tar.gz |
* string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.cvs/fedora-glibc-20080516T2152
Diffstat (limited to 'string')
-rw-r--r-- | string/strcasestr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcasestr.c b/string/strcasestr.c index 9de19aafa8..92f2eac7c8 100644 --- a/string/strcasestr.c +++ b/string/strcasestr.c @@ -46,7 +46,7 @@ && ((h_l) = (j) + (n_l))) #define CANON_ELEMENT(c) TOLOWER (c) #define CMP_FUNC(p1, p2, l) \ - strncasecmp ((const char *) (p1), (const char *) (p2), l) + __strncasecmp ((const char *) (p1), (const char *) (p2), l) #include "str-two-way.h" #undef strcasestr |