about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/network/inet_legacy.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/network/inet_legacy.c b/src/network/inet_legacy.c
index 9907c541..dd75420e 100644
--- a/src/network/inet_legacy.c
+++ b/src/network/inet_legacy.c
@@ -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)