2006-08-07 Jakub Jelinek <jakub@redhat.com>
authorUlrich Drepper <drepper@redhat.com>
Mon, 7 Aug 2006 17:40:53 +0000 (17:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 7 Aug 2006 17:40:53 +0000 (17:40 +0000)
            Ulrich Drepper  <drepper@redhat.com>

* nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
short cut if only one name component is stripped away.

ChangeLog
nis/nis_call.c

index 98ecfa6..dc3e039 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-07  Jakub Jelinek  <jakub@redhat.com>
+            Ulrich Drepper  <drepper@redhat.com>
+
+       * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
+       short cut if only one name component is stripped away.
+
 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
 
        * nis/nis_call.c: Minor cleanups throughout.
index bad1f77..928053d 100644 (file)
@@ -386,7 +386,6 @@ rec_dirsearch (const_nis_name name, directory_obj *dir, nis_error *status)
        char domain[namelen + 3];
        char ndomain[namelen + 3];
        char *cp;
-       u_int run = 0;
 
        strcpy (domain, name);
 
@@ -400,16 +399,9 @@ rec_dirsearch (const_nis_name name, directory_obj *dir, nis_error *status)
            nis_leaf_of_r (domain, leaf, sizeof (leaf));
            nis_domain_of_r (domain, ndomain, sizeof (ndomain));
            strcpy (domain, ndomain);
-           ++run;
          }
        while (nis_dir_cmp (domain, dir->do_name) != SAME_NAME);
 
-       if (run == 1)
-         {
-           /* We have found the directory above. Use it. */
-           return dir;
-         }
-
        cp = rawmemchr (leaf, '\0');
        *cp++ = '.';
        strcpy (cp, domain);