X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fcomstack.c;h=1755fc721ce985558037ee66f65d156311e672c0;hb=883245e48ad6e5735ab73884e18dc6cb5c297c86;hp=eac17f78cb4301b24e96362acfa2f9b8f9726e41;hpb=6e0314cce5d9c3d346d4d968a7ea07f92d8761b1;p=yaz-moved-to-github.git diff --git a/src/comstack.c b/src/comstack.c index eac17f7..1755fc7 100644 --- a/src/comstack.c +++ b/src/comstack.c @@ -19,10 +19,7 @@ #include #include #include - -#ifdef WIN32 -#define strncasecmp _strnicmp -#endif +#include #if HAVE_GNUTLS_H #define ENABLE_SSL 1 @@ -389,17 +386,19 @@ static int cs_complete_http(const char *buf, int len, int head_only) break; } else if (i < len - 20 && - !strncasecmp((const char *) buf+i, "Transfer-Encoding:", 18)) + !yaz_strncasecmp((const char *) buf+i, + "Transfer-Encoding:", 18)) { i+=18; while (buf[i] == ' ') i++; if (i < len - 8) - if (!strncasecmp((const char *) buf+i, "chunked", 7)) + if (!yaz_strncasecmp((const char *) buf+i, "chunked", 7)) chunked = 1; } else if (i < len - 17 && - !strncasecmp((const char *)buf+i, "Content-Length:", 15)) + !yaz_strncasecmp((const char *)buf+i, + "Content-Length:", 15)) { i+= 15; while (buf[i] == ' ')