summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-17 13:58:32 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-17 13:58:32 +0000
commitc0b50509efc80bc9a2c9ebc787d2ab868816231d (patch)
treefffa46439aaa786ccd7852ea8bc51cf03e70e35c /sunrpc
parent0937645101948542e6d0936546e9ca048847c24b (diff)
Update.
* sunrpc/clnt_unix.c (clntunix_destroy): Use __close not close. * libio/oldtmpfile.c: Likewise. * libio/oldiofdopen.c: Use __fcntl instead fcntl. * sysdeps/posix/profil.c: Use __sigaction instead of sigaction. * login/login.c: Determine pts/3 as terminal name if path is
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/clnt_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/clnt_unix.c b/sunrpc/clnt_unix.c
index cead72b761..923dd8a070 100644
--- a/sunrpc/clnt_unix.c
+++ b/sunrpc/clnt_unix.c
@@ -427,7 +427,7 @@ clntunix_destroy (CLIENT *h)
if (ct->ct_closeit)
{
- (void) close (ct->ct_sock);
+ (void) __close (ct->ct_sock);
}
XDR_DESTROY (&(ct->ct_xdrs));
mem_free ((caddr_t) ct, sizeof (struct ct_data));