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.
This commit is contained in:
parent
eca335fc04
commit
dbe221ecff
2 changed files with 2 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue