stas 2004/05/10 12:54:00
Modified: src/modules/perl modperl_cmd.c modperl_cmd.h
Log:
modperl_cmd_push_httpd_filter_handlers should be a static function
Revision Changes Path
1.59 +3 -3 modperl-2.0/src/modules/perl/modperl_cmd.c
Index: modperl_cmd.c
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_cmd.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -u -r1.58 -r1.59
--- modperl_cmd.c 4 Mar 2004 06:01:07 -0000 1.58
+++ modperl_cmd.c 10 May 2004 19:54:00 -0000 1.59
@@ -116,9 +116,9 @@
return NULL;
}
-char *modperl_cmd_push_httpd_filter_handlers(MpAV **handlers,
- const char *name,
- apr_pool_t *p)
+static char *modperl_cmd_push_httpd_filter_handlers(MpAV **handlers,
+ const char *name,
+ apr_pool_t *p)
{
modperl_handler_t *h = modperl_handler_new(p, name);
1.24 +0 -4 modperl-2.0/src/modules/perl/modperl_cmd.h
Index: modperl_cmd.h
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_cmd.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -u -r1.23 -r1.24
--- modperl_cmd.h 4 Mar 2004 06:01:07 -0000 1.23
+++ modperl_cmd.h 10 May 2004 19:54:00 -0000 1.24
@@ -23,10 +23,6 @@
const char *name,
apr_pool_t *p);
-char *modperl_cmd_push_httpd_filter_handlers(MpAV **handlers,
- const char *name,
- apr_pool_t *p);
-
#define MP_CMD_SRV_DECLARE(item) \
const char *modperl_cmd_##item(cmd_parms *parms, void *mconfig, \
const char *arg)