diff options
author | Bruno Haible <bruno@clisp.org> | 2006-07-31 16:41:58 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:13:44 +0200 |
commit | e0fe58bf6ef03eb4c6fb0235f97c4c5f3089c347 (patch) | |
tree | 7c6e3f84710ce4aa3a13394fa71379f0fb7dc8be /gettext-tools/src/msgl-iconv.c | |
parent | fd1b04b5dffec55351cbb68005e42b2fb9f8f70e (diff) | |
download | external_gettext-e0fe58bf6ef03eb4c6fb0235f97c4c5f3089c347.zip external_gettext-e0fe58bf6ef03eb4c6fb0235f97c4c5f3089c347.tar.gz external_gettext-e0fe58bf6ef03eb4c6fb0235f97c4c5f3089c347.tar.bz2 |
Rename strstr to c_strstr.
Diffstat (limited to 'gettext-tools/src/msgl-iconv.c')
-rw-r--r-- | gettext-tools/src/msgl-iconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/src/msgl-iconv.c b/gettext-tools/src/msgl-iconv.c index c171fa4..645f35c 100644 --- a/gettext-tools/src/msgl-iconv.c +++ b/gettext-tools/src/msgl-iconv.c @@ -41,7 +41,7 @@ #include "msgl-ascii.h" #include "xalloc.h" #include "xallocsa.h" -#include "strstr.h" +#include "c-strstr.h" #include "xvasprintf.h" #include "po-xerror.h" #include "gettext.h" @@ -178,7 +178,7 @@ iconv_message_list (message_list_ty *mlp, if (header != NULL) { - const char *charsetstr = strstr (header, "charset="); + const char *charsetstr = c_strstr (header, "charset="); if (charsetstr != NULL) { |