diff options
Diffstat (limited to 'libc/inet')
| -rw-r--r-- | libc/inet/getnet.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/inet/getnet.c b/libc/inet/getnet.c index d90fa701e..8743fb9a5 100644 --- a/libc/inet/getnet.c +++ b/libc/inet/getnet.c @@ -69,6 +69,7 @@ int getnetent_r(struct netent *result_buf,  	char **tok = NULL;  	const size_t aliaslen = sizeof(char *) * MAXTOKENS;  	int ret = ERANGE; +	(void)h_errnop;  	*result = NULL;  	if (buflen < aliaslen @@ -147,6 +148,7 @@ int getnetbyname_r(const char *name,  {  	register char **cp;  	int ret, herrnop; +	(void)h_errnop;  	__UCLIBC_MUTEX_LOCK(mylock);  	setnetent(net_stayopen); @@ -181,6 +183,7 @@ int getnetbyaddr_r(uint32_t net, int type,  					int *h_errnop)  {  	int ret, herrnop; +	(void)h_errnop;  	__UCLIBC_MUTEX_LOCK(mylock);  	setnetent(net_stayopen);  | 
