From: Michael Wallner Date: Thu, 2 Jun 2011 20:00:50 +0000 (+0000) Subject: fix typo X-Git-Tag: DEV_2-before-client~113 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;ds=sidebyside;h=302bc074669c2fdcfebd9d7db8ef521899317dd9;p=m6w6%2Fext-http fix typo --- diff --git a/php_http_neon.c b/php_http_neon.c index 11117d3..f0bc293 100644 --- a/php_http_neon.c +++ b/php_http_neon.c @@ -616,7 +616,7 @@ static STATUS php_http_neon_request_exec(php_http_request_t *h, php_http_request purl->port = neon->options.port; } else if (!purl->port) { purl->port = 80; - if (strncascmp(purl->scheme, "http", 4)) { + if (strncasecmp(purl->scheme, "http", 4)) { #ifdef HAVE_GETSERVBYNAME struct servent *se;