From: Ulrich Drepper Date: Fri, 22 Jun 2007 17:01:29 +0000 (+0000) Subject: * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more X-Git-Tag: upstream/2.30~14910 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e22c61fb6f1cb8b29ec5ee1df2ab55caf6d47a99;p=external%2Fglibc.git * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more ISO C compliant. --- diff --git a/ChangeLog b/ChangeLog index 5de43cb..fb25d0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-22 Ulrich Drepper + + * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more + ISO C compliant. + 2007-06-19 Ulrich Drepper * elf/dl-close.c (free_mem): Free _dl_scope_free_list. diff --git a/nis/nis_domain_of.c b/nis/nis_domain_of.c index 4d6b486..6f41b92 100644 --- a/nis/nis_domain_of.c +++ b/nis/nis_domain_of.c @@ -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;