d6b4e48968
- various fixes (see /usr/local/share/doc/openldap/CHANGES) [1] - fixed libldap fdset re-init for restart (ITS#3524) [3] - added ACI support [2] - added SLPv2 support PR: 76192 [1], 74906 [2] Submitted by: Alex Deiter <tiamat@komi.mts.ru> [1], Rainer Duffner <rainer@ultra-secure.de> [2] Obtained from: OpenLDAP CVS [3]
11 lines
427 B
C
11 lines
427 B
C
--- servers/slapd/back-ldap/search.c Thu Jan 20 18:01:12 2005
|
|
+++ servers/slapd/back-ldap/search.c Wed Feb 2 14:51:05 2005
|
|
@@ -681,7 +681,7 @@
|
|
|
|
retry:
|
|
rc = ldap_search_ext_s(lc->ld, mdn.bv_val, LDAP_SCOPE_BASE, filter,
|
|
- gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
|
|
+ at ? gattr : NULL, 0, NULL, NULL, LDAP_NO_LIMIT,
|
|
LDAP_NO_LIMIT, &result);
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
if ( rc == LDAP_SERVER_DOWN && do_retry ) {
|