about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/network/inet_pton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/inet_pton.c b/src/network/inet_pton.c
index 349c4025..b7f4834f 100644
--- a/src/network/inet_pton.c
+++ b/src/network/inet_pton.c
@@ -21,11 +21,11 @@ int inet_pton(int af, const char *s, void *a0)
 				return 0;
 			s=z+1;
 		}
-		return 0;
+		return 1;
 	} else if (af==AF_INET6) {
 		return !__ipparse(a, AF_INET6, s);
 	}
 
 	errno = EAFNOSUPPORT;
-	return 0;
+	return -1;
 }