mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user