1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Fix ISDIGIT to c_isdigit.

This commit is contained in:
Micah Cowan 2008-04-25 20:04:10 -07:00
parent 714ccdcd84
commit 7a54d852bf

View File

@ -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';