Stom foutje in vorige verbetering

This commit is contained in:
kaashoek 1988-05-27 09:30:05 +00:00
parent cd73332f77
commit abc9006b8e

View file

@ -170,7 +170,7 @@ char *match_ch( c, str, instr)
char *skip_string( ptr)
char *ptr;
{
while ( isalnum( *ptr) && !isspace( *ptr) && *ptr != ':')
while ( isalnum( *ptr) || ( !isspace( *ptr) && *ptr != ':'))
ptr++;
return( ptr);
}