Allow whitespace termination. Internal use of /etc/resolv.conf relies
on this, and who knows what else would, too...
This commit is contained in:
parent
28585846d6
commit
8308463eba
@ -135,13 +135,16 @@ inet_aton(cp, addr)
|
||||
c++;
|
||||
break;
|
||||
|
||||
case '\0' :
|
||||
case '\0':
|
||||
gotend = 1;
|
||||
break;
|
||||
|
||||
default:
|
||||
/* Invalid character, so fail */
|
||||
return (0);
|
||||
if (isspace(*c)) {
|
||||
gotend = 1;
|
||||
break;
|
||||
} else
|
||||
return (0); /* Invalid character, so fail */
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user