Allow whitespace termination. Internal use of /etc/resolv.conf relies

on this, and who knows what else would, too...
This commit is contained in:
Brian Feldman 1999-10-31 04:43:55 +00:00
parent 28585846d6
commit 8308463eba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52708

View file

@ -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 */
}
}