mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- 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:
parent
389caf97fd
commit
c5c0af3081
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue