* nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
authorUlrich Drepper <drepper@redhat.com>
Fri, 22 Jun 2007 17:01:29 +0000 (17:01 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 22 Jun 2007 17:01:29 +0000 (17:01 +0000)
ISO C compliant.

ChangeLog
nis/nis_domain_of.c

index 5de43cb..fb25d0c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-22  Ulrich Drepper  <drepper@redhat.com>
+
+       * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
+       ISO C compliant.
+
 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
 
        * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
index 4d6b486..6f41b92 100644 (file)
@@ -32,10 +32,10 @@ __nis_domain_of (const_nis_name name)
 {
   const_nis_name cptr = strchr (name, '.');
 
-  if (cptr++ == NULL)
+  if (cptr == NULL)
     return "";
 
-  if (*cptr == '\0')
+  if (*++cptr == '\0')
     return ".";
 
   return cptr;