From: William A. Rowe Jr Date: Thu, 12 Dec 2002 07:15:51 +0000 (+0000) Subject: Fix a declaration mismatch. We are down to const'ness errors. X-Git-Tag: pre_ajp_proxy~2443 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee30f7b7aa4ffe4d63f6d2dd764a3cb702da83c1;p=apache Fix a declaration mismatch. We are down to const'ness errors. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97892 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/util_ldap.c b/modules/experimental/util_ldap.c index 06f7d85f91..102431248d 100644 --- a/modules/experimental/util_ldap.c +++ b/modules/experimental/util_ldap.c @@ -205,7 +205,7 @@ LDAP_DECLARE(void) util_ldap_connection_close(util_ldap_connection_t *ldc) * with the pool cleanup function - causing the LDAP connections to be * shut down cleanly on graceful restart. */ -LDAP_DECLARE(apr_status_t) util_ldap_connection_destroy(void *param) +LDAP_DECLARE_NONSTD(apr_status_t) util_ldap_connection_destroy(void *param) { util_ldap_connection_t *ldc = param;