[BZ #1925]
authorUlrich Drepper <drepper@redhat.com>
Fri, 25 Nov 2005 16:05:57 +0000 (16:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 25 Nov 2005 16:05:57 +0000 (16:05 +0000)
2005-11-25  Ulrich Drepper  <drepper@redhat.com>
[BZ #1925]
* nis/ypclnt.c (yp_order): Correct test for invalid parameter.

ChangeLog
nis/ypclnt.c

index 2adef78..a9fb192 100644 (file)
--- 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.
index 6230cb8..df0e783 100644 (file)
@@ -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;