diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-01-06 22:17:24 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-01-06 22:17:24 -0500 |
commit | dbe221ecff2dd8a3d4d005d80b81064e156f8f4a (patch) | |
tree | 5665e93e53e9a9c35cf49aa98a3ba2f9ffe30141 /include/arpa/inet.h | |
parent | eca335fc0453d3680fd9f112574919e13fab31d2 (diff) | |
download | musl-dbe221ecff2dd8a3d4d005d80b81064e156f8f4a.zip musl-dbe221ecff2dd8a3d4d005d80b81064e156f8f4a.tar.gz musl-dbe221ecff2dd8a3d4d005d80b81064e156f8f4a.tar.bz2 |
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/inet.h')
-rw-r--r-- | include/arpa/inet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h index 5dcadaa..37f8c11 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); |