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:
parent
714ccdcd84
commit
7a54d852bf
@ -761,7 +761,7 @@ ftp_parse_vms_ls (const char *file)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#if (!defined( __VMS) && !defined( PRESERVE_VMS_VERSIONS))
|
#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) != '^'))
|
if ((*p == ';') && (*(p- 1) != '^'))
|
||||||
{
|
{
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
|
Loading…
Reference in New Issue
Block a user