summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2016-03-08 10:04:23 +0100
committerFlorian Weimer <fweimer@redhat.com>2016-03-08 10:04:24 +0100
commit30bcdc1860a9e80afad11c94e508f962a6563205 (patch)
tree7c407f6e306ae36aa700fa53d014faec696ae6ff /sunrpc
parente49b221aeaf184cff0b75da56b41be807b5a5403 (diff)
sunrpc: In key_call_keyenvoy, use int status instead of union wait
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/key_call.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 7ecf6fbaa1..a0d9a2a0d1 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -304,7 +304,7 @@ key_call_keyenvoy (u_long proc, xdrproc_t xdr_arg, char *arg,
FILE *fargs;
FILE *frslt;
sigset_t oldmask, mask;
- union wait status;
+ int status;
int pid;
int success;
uid_t ruid;
@@ -362,7 +362,7 @@ key_call_keyenvoy (u_long proc, xdrproc_t xdr_arg, char *arg,
success = 0;
}
else
- if (status.w_retcode)
+ if (status != 0)
{
debug ("wait4 1");
success = 0;