]> granicus.if.org Git - apache/commitdiff
A couple of cleanups to the nested group code based on review comments.
authorPaul J. Reder <rederpj@apache.org>
Thu, 2 Aug 2007 16:17:17 +0000 (16:17 +0000)
committerPaul J. Reder <rederpj@apache.org>
Thu, 2 Aug 2007 16:17:17 +0000 (16:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@562165 13f79535-47bb-0310-9956-ffa450edef68

modules/ldap/util_ldap.c
modules/ldap/util_ldap_cache_mgr.c

index b39310b53bdbf1b2f7eae0ed9cfbcd04f92605fb..1dfc71f5f14a3c7d4bd6eece21da5a8a33facb69 100644 (file)
@@ -860,11 +860,7 @@ start_over:
 }
 
 /*
- * Does a recursive lookup operation to try to find a user within (cached) nested
- * groups. It accepts a cache that it will use to lookup previous compare attempts.
- * We cache two kinds of compares (require group compares) and (require user
- * compares). Each compare has a different cache node: require group includes the DN;
- * require user does not because the require user cache is owned by the
+ * Does a recursive lookup operation to try to find a user within (cached) nested groups.
  *
  * DON'T CALL THIS UNLESS YOU CALLED uldap_cache_compare FIRST!!!!!
  */
index e016ae7a6cc6283175f7016dd64b916080aa4cfa..6f2f6428bcb53ccf5078fd8a4afd0586e51833b1 100644 (file)
@@ -152,7 +152,6 @@ util_compare_subgroup_t *util_ald_sgl_dup(util_ald_cache_t *cache, util_compare_
     sgl_out->len = sgl_in->len;
 
     for (i = 0; i < sgl_in->len; i++) {
-        fprintf(stderr, "sgl_dup: Adding %s to sgl\n", sgl_in->subgroupDNs[i]); fflush(stderr);
         sgl_out->subgroupDNs[i] = util_ald_strdup(cache, sgl_in->subgroupDNs[i]);
     }