diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-19 01:16:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-19 01:16:44 +0000 |
commit | 133a5a43e996792a90d696f83bfb80202524e238 (patch) | |
tree | 2510069467ef285019a030f406956c664a0f0fd0 /libc/inet/rpc/pm_getmaps.c | |
parent | 9588159bf4646ec3fa5983cabbcb208f3e5496b3 (diff) |
dont shadow the socket() function
Diffstat (limited to 'libc/inet/rpc/pm_getmaps.c')
-rw-r--r-- | libc/inet/rpc/pm_getmaps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/inet/rpc/pm_getmaps.c b/libc/inet/rpc/pm_getmaps.c index bd740a0ae..1760adf37 100644 --- a/libc/inet/rpc/pm_getmaps.c +++ b/libc/inet/rpc/pm_getmaps.c @@ -62,7 +62,7 @@ struct pmaplist * pmap_getmaps (struct sockaddr_in *address) { struct pmaplist *head = (struct pmaplist *) NULL; - int socket = -1; + int _socket = -1; struct timeval minutetimeout; CLIENT *client; @@ -72,7 +72,7 @@ pmap_getmaps (struct sockaddr_in *address) /* Don't need a reserved port to get ports from the portmapper. */ client = clnttcp_create (address, PMAPPROG, - PMAPVERS, &socket, 50, 500); + PMAPVERS, &_socket, 50, 500); if (client != (CLIENT *) NULL) { if (CLNT_CALL (client, PMAPPROC_DUMP, (xdrproc_t)xdr_void, NULL, @@ -83,7 +83,7 @@ pmap_getmaps (struct sockaddr_in *address) } CLNT_DESTROY (client); } - /* (void)__close(socket); CLNT_DESTROY already closed it */ + /* (void)__close(_socket); CLNT_DESTROY already closed it */ address->sin_port = 0; return head; } |