From dde0763af5353f4646e57e9eb788768aca072a3e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 21 Jul 2007 17:24:43 +0000 Subject: * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for descriptor received from nscd. --- nscd/nscd_helper.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'nscd/nscd_helper.c') diff --git a/nscd/nscd_helper.c b/nscd/nscd_helper.c index 79644a4..50146a0 100644 --- a/nscd/nscd_helper.c +++ b/nscd/nscd_helper.c @@ -265,7 +265,11 @@ get_mapping (request_type type, const char *key, if (wait_on_socket (sock) <= 0) goto out_close2; - if (__builtin_expect (TEMP_FAILURE_RETRY (__recvmsg (sock, &msg, 0)) +# ifndef MSG_CMSG_CLOEXEC +# define MSG_CMSG_CLOEXEC 0 +# endif + if (__builtin_expect (TEMP_FAILURE_RETRY (__recvmsg (sock, &msg, + MSG_CMSG_CLOEXEC)) != keylen, 0)) goto out_close2; -- cgit v1.1