summaryrefslogtreecommitdiffstats
path: root/libexec/ypxfr
diff options
context:
space:
mode:
authorrodrigc <rodrigc@FreeBSD.org>2015-05-31 22:20:36 +0000
committerrodrigc <rodrigc@FreeBSD.org>2015-05-31 22:20:36 +0000
commitfb3df4b96608adb571f2333f20156bd9e0b5a874 (patch)
tree15c5ecc03cd7377d9dfe4cfc3f776644397b2c94 /libexec/ypxfr
parentcde50605c3d26e3af469b0930716b96e92ee2cce (diff)
downloadFreeBSD-src-fb3df4b96608adb571f2333f20156bd9e0b5a874.zip
FreeBSD-src-fb3df4b96608adb571f2333f20156bd9e0b5a874.tar.gz
ypxfr(8): Use the correct enum member for checking yp_errno.
Found-by: gcc47 Submitted by: Sascha Wildner <swildner@dragonflybsd.org> Obtained from: DragonFlyBSD (commit d0b3a17c3c6)
Diffstat (limited to 'libexec/ypxfr')
-rw-r--r--libexec/ypxfr/ypxfr_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ypxfr/ypxfr_main.c b/libexec/ypxfr/ypxfr_main.c
index 70fd1f5..03a30f6 100644
--- a/libexec/ypxfr/ypxfr_main.c
+++ b/libexec/ypxfr/ypxfr_main.c
@@ -357,7 +357,7 @@ the local domain name isn't set");
ypxfr_mapname,
ypxfr_master, 0)) == 0) {
yp_error("failed to get order number of %s: %s",
- ypxfr_mapname, yp_errno == YPXFR_SUCC ?
+ ypxfr_mapname, yp_errno == YP_TRUE ?
"map has order 0" :
ypxfrerr_string((ypxfrstat)yp_errno));
ypxfr_exit(YPXFR_YPERR,NULL);
@@ -533,7 +533,7 @@ leave:
ypxfr_mapname,
ypxfr_master, 0)) == 0) {
yp_error("failed to get order number of %s: %s",
- ypxfr_mapname, yp_errno == YPXFR_SUCC ?
+ ypxfr_mapname, yp_errno == YP_TRUE ?
"map has order 0" :
ypxfrerr_string((ypxfrstat)yp_errno));
ypxfr_exit(YPXFR_YPERR,ypxfr_temp_map);
OpenPOWER on IntegriCloud