From 302bc074669c2fdcfebd9d7db8ef521899317dd9 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 2 Jun 2011 20:00:50 +0000 Subject: [PATCH] fix typo --- php_http_neon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2