summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/ldap/util_ldap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c
index 5d41aa6f5a..72170d8caa 100644
--- a/modules/ldap/util_ldap.c
+++ b/modules/ldap/util_ldap.c
@@ -2405,9 +2405,6 @@ static void *util_ldap_create_config(apr_pool_t *p, server_rec *s)
st->connectionTimeout = 10;
st->verify_svr_cert = 1;
- /* Initialize the rebind callback's cross reference list. */
- apr_ldap_rebind_init (p);
-
return st;
}
@@ -2615,6 +2612,9 @@ static int util_ldap_post_config(apr_pool_t *p, apr_pool_t *plog,
result_err ? result_err->reason : "");
}
+ /* Initialize the rebind callback's cross reference list. */
+ apr_ldap_rebind_init (p);
+
return(OK);
}