From: Micah Cowan Date: Sat, 26 Apr 2008 03:04:10 +0000 (-0700) Subject: Fix ISDIGIT to c_isdigit. X-Git-Tag: v1.13~319^2 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=7a54d852bfa09c828bbc4907adddee7e4beb1715 Fix ISDIGIT to c_isdigit. --- diff --git a/src/ftp-ls.c b/src/ftp-ls.c index 95a8b3df..17a4f511 100644 --- a/src/ftp-ls.c +++ b/src/ftp-ls.c @@ -761,7 +761,7 @@ ftp_parse_vms_ls (const char *file) */ #if (!defined( __VMS) && !defined( PRESERVE_VMS_VERSIONS)) - for (p = tok+ strlen( tok); (--p > tok) && ISDIGIT( *p); ); + for (p = tok+ strlen( tok); (--p > tok) && c_isdigit( *p); ); if ((*p == ';') && (*(p- 1) != '^')) { *p = '\0';