diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 2009-11-25 04:49:41 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 2009-11-25 04:49:41 +0000 |
commit | fcbfc882d6d72da0b0812953ec7b273d69db1d25 (patch) | |
tree | 8ed33fccc29cc8164edc6086a046e3d3abc4eb54 | |
parent | 0c0349bfa4ecb2fb0e99d094e2dcaca7f5878d0a (diff) |
Notes
-rw-r--r-- | lib/libc/rpc/svc_raw.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/rpc/svc_raw.c b/lib/libc/rpc/svc_raw.c index 7492046a88883..67bcba1c86836 100644 --- a/lib/libc/rpc/svc_raw.c +++ b/lib/libc/rpc/svc_raw.c @@ -176,9 +176,8 @@ svc_raw_reply(xprt, msg) msg->acpted_rply.ar_results.proc = (xdrproc_t) xdr_void; msg->acpted_rply.ar_results.where = NULL; - if (!xdr_replymsg(xdrs, msg) || - !SVCAUTH_WRAP(&SVC_AUTH(xprt), xdrs, xdr_proc, xdr_where)) - stat = FALSE; + stat = xdr_replymsg(xdrs, msg) && + SVCAUTH_WRAP(&SVC_AUTH(xprt), xdrs, xdr_proc, xdr_where); } else { stat = xdr_replymsg(xdrs, msg); } |