From: Ilia Alshanetsky Date: Thu, 4 Dec 2003 00:14:50 +0000 (+0000) Subject: MFH: Typo fix. X-Git-Tag: php-4.3.5RC1~119 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1f00c0bae43e5ae87fd4407db58156b0fb99d2c;p=php MFH: Typo fix. --- diff --git a/ext/standard/url.c b/ext/standard/url.c index 813de7349d..05e549c422 100644 --- a/ext/standard/url.c +++ b/ext/standard/url.c @@ -104,7 +104,7 @@ PHPAPI php_url *php_url_parse(char *str) * correctly parse things like a.com:80 */ p = e + 1; - while (isdigit(p)) { + while (isdigit(*p)) { p++; } @@ -145,7 +145,7 @@ PHPAPI php_url *php_url_parse(char *str) p = e + 1; pp = p; - while (pp-p < 6 && isdigit(pp)) { + while (pp-p < 6 && isdigit(*pp)) { pp++; }