about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--nis/ypclnt.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2adef782c8..a9fb192695 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-25  Ulrich Drepper  <drepper@redhat.com>
+
+	[BZ #1925]
+	* nis/ypclnt.c (yp_order): Correct test for invalid parameter.
+
 2005-11-24  Ulrich Drepper  <drepper@redhat.com>
 
 	* scripts/check-c++-types.sh: Improve comments.
diff --git a/nis/ypclnt.c b/nis/ypclnt.c
index 6230cb84dc..df0e7830cb 100644
--- a/nis/ypclnt.c
+++ b/nis/ypclnt.c
@@ -593,7 +593,7 @@ yp_order (const char *indomain, const char *inmap, unsigned int *outorder)
   enum clnt_stat result;
 
   if (indomain == NULL || indomain[0] == '\0' ||
-      inmap == NULL || inmap == '\0')
+      inmap == NULL || inmap[0] == '\0')
     return YPERR_BADARGS;
 
   req.domain = (char *) indomain;