diff options
-rw-r--r-- | sunrpc/clnt_unix.c | 8 | ||||
-rw-r--r-- | sunrpc/svc_unix.c | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/sunrpc/clnt_unix.c b/sunrpc/clnt_unix.c index 365bdace3f..cead72b761 100644 --- a/sunrpc/clnt_unix.c +++ b/sunrpc/clnt_unix.c @@ -445,7 +445,6 @@ __msgread (int sock, void *buf, size_t cnt) struct iovec iov[1]; struct msghdr msg; struct cmessage cm; - int on = 1; iov[0].iov_base = buf; iov[0].iov_len = cnt; @@ -459,8 +458,11 @@ __msgread (int sock, void *buf, size_t cnt) msg.msg_flags = 0; #ifdef SO_PASSCRED - if (setsockopt (sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on))) - return -1; + { + int on = 1; + if (setsockopt (sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on))) + return -1; + } #endif return recvmsg (sock, &msg, 0); diff --git a/sunrpc/svc_unix.c b/sunrpc/svc_unix.c index 0aa343654f..7ada8cc86d 100644 --- a/sunrpc/svc_unix.c +++ b/sunrpc/svc_unix.c @@ -295,7 +295,6 @@ __msgread (int sock, void *buf, size_t cnt) { struct iovec iov[1]; struct msghdr msg; - int on = 1; iov[0].iov_base = buf; iov[0].iov_len = cnt; @@ -309,8 +308,11 @@ __msgread (int sock, void *buf, size_t cnt) msg.msg_flags = 0; #ifdef SO_PASSCRED - if (setsockopt (sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on))) - return -1; + { + int on = 1; + if (setsockopt (sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on))) + return -1; + } #endif return recvmsg (sock, &msg, 0); |