summaryrefslogtreecommitdiff
path: root/include/arpa
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-01-06 22:17:24 -0500
committerRich Felker <dalias@aerifal.cx>2014-01-06 22:17:24 -0500
commitdbe221ecff2dd8a3d4d005d80b81064e156f8f4a (patch)
tree5665e93e53e9a9c35cf49aa98a3ba2f9ffe30141 /include/arpa
parenteca335fc0453d3680fd9f112574919e13fab31d2 (diff)
downloadmusl-dbe221ecff2dd8a3d4d005d80b81064e156f8f4a.tar.gz
fix argument types for legacy function inet_makeaddr
the type int was taken from seemingly erroneous man pages. glibc uses in_addr_t (uint32_t), and semantically, the arguments should be unsigned.
Diffstat (limited to 'include/arpa')
-rw-r--r--include/arpa/inet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h
index 5dcadaae..37f8c11e 100644
--- a/include/arpa/inet.h
+++ b/include/arpa/inet.h
@@ -20,7 +20,7 @@ int inet_pton (int, const char *__restrict, void *__restrict);
const char *inet_ntop (int, const void *__restrict, char *__restrict, socklen_t);
int inet_aton (const char *, struct in_addr *);
-struct in_addr inet_makeaddr(int, int);
+struct in_addr inet_makeaddr(in_addr_t, in_addr_t);
in_addr_t inet_lnaof(struct in_addr);
in_addr_t inet_netof(struct in_addr);