Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 75380 invoked by uid 500); 12 Dec 2002 07:15:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 75369 invoked by uid 500); 12 Dec 2002 07:15:53 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 12 Dec 2002 07:15:52 -0000 Message-ID: <20021212071552.33636.qmail@icarus.apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/experimental util_ldap.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N wrowe 2002/12/11 23:15:52 Modified: modules/experimental util_ldap.c Log: Fix a declaration mismatch. We are down to const'ness errors. Revision Changes Path 1.8 +1 -1 httpd-2.0/modules/experimental/util_ldap.c Index: util_ldap.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/util_ldap.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- util_ldap.c 22 Nov 2002 12:51:02 -0000 1.7 +++ util_ldap.c 12 Dec 2002 07:15:51 -0000 1.8 @@ -205,7 +205,7 @@ * 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;