- Revert r38346 as its incorrect fix. Real problem is implementation of inet_aton in compat.c. So back to address 255.255.255.255 failing.

svn path=/trunk/; revision=38351
This commit is contained in:
Michael Martin 2008-12-26 10:38:21 +00:00
parent 389caf97fd
commit c5c0af3081

View file

@ -2056,7 +2056,7 @@ ipv4addrs(char * buf)
note("Input: %s", buf);
do {
tmp = strtok(buf, ".");
tmp = strtok(buf, " ");
note("got %s", tmp);
if( tmp && inet_aton(tmp, &jnk) ) i++;
buf = NULL;