From: Joe Orton Date: Thu, 28 Jul 2005 09:50:16 +0000 (+0000) Subject: * modules/ldap/util_ldap.c: Remove DOCTYPE_* macros duplicated from X-Git-Tag: 2.1.7~5^2~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93004fd4d846b929f3a888921731dcfc1a210af7;p=thirdparty%2Fapache%2Fhttpd.git * modules/ldap/util_ldap.c: Remove DOCTYPE_* macros duplicated from httpd.h. Remove redundant prototypes of static functions which aren't used before they are declared. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@225734 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 666af4fa5a2..681b324c647 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -55,42 +55,6 @@ module AP_MODULE_DECLARE_DATA ldap_module; -static int util_ldap_handler(request_rec *r); -static void *util_ldap_create_config(apr_pool_t *p, server_rec *s); - - -/* - * Some definitions to help between various versions of apache. - */ - -#ifndef DOCTYPE_HTML_2_0 -#define DOCTYPE_HTML_2_0 "\n" -#endif - -#ifndef DOCTYPE_HTML_3_2 -#define DOCTYPE_HTML_3_2 "\n" -#endif - -#ifndef DOCTYPE_HTML_4_0S -#define DOCTYPE_HTML_4_0S "\n" -#endif - -#ifndef DOCTYPE_HTML_4_0T -#define DOCTYPE_HTML_4_0T "\n" -#endif - -#ifndef DOCTYPE_HTML_4_0F -#define DOCTYPE_HTML_4_0F "\n" -#endif - #define LDAP_CACHE_LOCK() do { \ if (st->util_ldap_cache_lock) \ apr_global_mutex_lock(st->util_ldap_cache_lock); \