From 32a770ac1851339621185cdca187d8c1cc27adaf Mon Sep 17 00:00:00 2001 From: Ben Kaduk Date: Mon, 25 Nov 2013 13:36:34 -0500 Subject: Remove inet_ntoa() prototype from getrpcent.c It is not needed. In general, we shouldn't be using inet_ntoa(), anyway, as it is IPv4-specific and we have IPv6 support almost everywhere. --- src/lib/rpc/getrpcent.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/rpc/getrpcent.c b/src/lib/rpc/getrpcent.c index 604fa85d4..db03daed6 100644 --- a/src/lib/rpc/getrpcent.c +++ b/src/lib/rpc/getrpcent.c @@ -60,7 +60,6 @@ static struct rpcdata *get_rpcdata(); static struct rpcent *interpret(); struct hostent *gethostent(); -char *inet_ntoa(); static char RPCDB[] = "/etc/rpc"; -- cgit