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
@ -140,8 +140,11 @@ inet_aton(cp, addr)
|
||||
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