summaryrefslogtreecommitdiff
path: root/nis
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-03-04 00:28:04 +0000
committerUlrich Drepper <drepper@redhat.com>2008-03-04 00:28:04 +0000
commit0f749099e991ef47514bd635225a89a9c0250b80 (patch)
tree2a4549c6ec26d08e23e418eafc93059a4ffe0ab5 /nis
parent3868fb6efc52d60a6ab49b08fd6d1c7216237820 (diff)
[BZ #5854]
* nis/ypclnt.c (yp_order): Fix handling of return value of do_ypcall_tr call. Patch by Jeff Moyer <jmoyer@redhat.com>.
Diffstat (limited to 'nis')
-rw-r--r--nis/ypclnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nis/ypclnt.c b/nis/ypclnt.c
index ae04ee9212..7d0091bd26 100644
--- a/nis/ypclnt.c
+++ b/nis/ypclnt.c
@@ -634,7 +634,7 @@ yp_order (const char *indomain, const char *inmap, unsigned int *outorder)
(caddr_t) &req, (xdrproc_t) xdr_ypresp_order,
(caddr_t) &resp);
- if (result == YPERR_SUCCESS)
+ if (result != YPERR_SUCCESS)
return result;
*outorder = resp.ordernum;