summaryrefslogtreecommitdiff
path: root/modules/ldap
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2011-03-12 21:20:23 +0000
committerEric Covener <covener@apache.org>2011-03-12 21:20:23 +0000
commit813da4a81fa3e8816a72310d0675607fdf85a0fc (patch)
treead19792cac40a6b72d570c2a40c605dc474c9181 /modules/ldap
parent03c032b4e467f43db1af596f4085888f11324b76 (diff)
downloadhttpd-813da4a81fa3e8816a72310d0675607fdf85a0fc.tar.gz
ifdef 0-out uldap_connection_remove(), which is not part of the API and
currently has no callers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1081006 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap')
-rw-r--r--modules/ldap/util_ldap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c
index 8a9132f8ec..bd0e964c77 100644
--- a/modules/ldap/util_ldap.c
+++ b/modules/ldap/util_ldap.c
@@ -185,7 +185,8 @@ static apr_status_t uldap_connection_unbind(void *param)
return APR_SUCCESS;
}
-
+/* not presently used, not part of the API */
+#if 0
/*
* util_ldap_connection_remove frees all storage associated with the LDAP
* connection and removes it completely from the per-virtualhost list of
@@ -239,6 +240,7 @@ static apr_status_t util_ldap_connection_remove (void *param) {
return APR_SUCCESS;
}
+#endif
static int uldap_connection_init(request_rec *r,
util_ldap_connection_t *ldc)