Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 83188 invoked by uid 500); 20 May 2001 15:26:22 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 83174 invoked by uid 500); 20 May 2001 15:26:21 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 20 May 2001 15:26:19 -0000 Message-ID: <20010520152619.83169.qmail@apache.org> From: ben@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/experimental mod_optional_hook_export.c mod_optional_hook_export.h ben 01/05/20 08:26:19 Modified: include ap_config.h modules/experimental mod_optional_hook_export.c mod_optional_hook_export.h Log: More cleanup. Revision Changes Path 1.62 +1 -1 httpd-2.0/include/ap_config.h Index: ap_config.h =================================================================== RCS file: /home/cvs/httpd-2.0/include/ap_config.h,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- ap_config.h 2001/05/20 14:13:31 1.61 +++ ap_config.h 2001/05/20 15:26:17 1.62 @@ -246,7 +246,7 @@ /** * Hook an optional hook. Unlike static hooks, this uses a macro instead of a - * function + * function. */ #define AP_OPTIONAL_HOOK(name,fn,pre,succ,order) \ APR_OPTIONAL_HOOK(ap,name,fn,pre,succ,order) 1.4 +0 -3 httpd-2.0/modules/experimental/mod_optional_hook_export.c Index: mod_optional_hook_export.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_optional_hook_export.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- mod_optional_hook_export.c 2001/05/20 14:13:32 1.3 +++ mod_optional_hook_export.c 2001/05/20 15:26:18 1.4 @@ -57,9 +57,6 @@ #include "mod_optional_hook_export.h" #include "http_protocol.h" -/*APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap,AP_MODULE,int,optional_hook_test, - (const char *szStr), - (szStr),OK,DECLINED)*/ AP_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(int,optional_hook_test,(const char *szStr), (szStr),OK,DECLINED) 1.4 +1 -1 httpd-2.0/modules/experimental/mod_optional_hook_export.h Index: mod_optional_hook_export.h =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_optional_hook_export.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- mod_optional_hook_export.h 2001/05/20 14:13:33 1.3 +++ mod_optional_hook_export.h 2001/05/20 15:26:18 1.4 @@ -55,7 +55,7 @@ #ifndef MOD_OPTIONAL_HOOK_EXPORT_H #define MOD_OPTOPNAL_HOOK_EXPORT_H -#include "apr_optional_hooks.h" +#include "ap_config.h" AP_DECLARE_HOOK(int,optional_hook_test,(const char *))