fix inet_aton to accept the generic "numbers-and-dots" IPv4 address format
authorSzabolcs Nagy <nsz@port70.net>
Tue, 22 Oct 2013 12:23:17 +0000 (12:23 +0000)
committerSzabolcs Nagy <nsz@port70.net>
Tue, 22 Oct 2013 12:23:17 +0000 (12:23 +0000)
src/network/inet_legacy.c

index 9907c54..dd75420 100644 (file)
@@ -10,7 +10,10 @@ in_addr_t inet_network(const char *p)
 
 int inet_aton(const char *cp, struct in_addr *inp)
 {
-       return inet_pton(AF_INET, cp, (void *)inp) > 0;
+       struct sockaddr_in sin;
+       int r = __ipparse(&sin, AF_INET, cp);
+       *inp = sin.sin_addr;
+       return r;
 }
 
 struct in_addr inet_makeaddr(int net, int host)