diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-07-26 23:12:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-07-26 23:12:04 +0000 |
commit | 31f3b159e3cb07c2733fd7662da6f1abd689ee3f (patch) | |
tree | d3b93c669dfe09562cf7e80e963cc452b93dace5 /sunrpc | |
parent | c0216dfc6262a4f1379b990e4076127f1f47c6d1 (diff) | |
download | glibc-31f3b159e3cb07c2733fd7662da6f1abd689ee3f.tar glibc-31f3b159e3cb07c2733fd7662da6f1abd689ee3f.tar.gz glibc-31f3b159e3cb07c2733fd7662da6f1abd689ee3f.tar.bz2 glibc-31f3b159e3cb07c2733fd7662da6f1abd689ee3f.zip |
* sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
magic number.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/key_call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c index 611c37256c..319d8017e8 100644 --- a/sunrpc/key_call.c +++ b/sunrpc/key_call.c @@ -462,7 +462,7 @@ getkeyserv_handle (int vers) clnt_control (kcp->client, CLSET_RETRY_TIMEOUT, (char *)&wait_time); if (clnt_control (kcp->client, CLGET_FD, (char *)&fd)) - __fcntl (fd, F_SETFD, 1); /* make it "close on exec" */ + __fcntl (fd, F_SETFD, FD_CLOEXEC); /* make it "close on exec" */ return kcp->client; } |