From: Eric Covener Date: Sat, 12 Mar 2011 21:20:23 +0000 (+0000) Subject: ifdef 0-out uldap_connection_remove(), which is not part of the API and X-Git-Tag: 2.3.12~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=813da4a81fa3e8816a72310d0675607fdf85a0fc;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 8a9132f8ec1..bd0e964c778 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)