dgaudet 97/07/26 19:08:59
Modified: src mod_asis.c
Log:
Oops missed statics on this one.
Revision Changes Path
1.16 +2 -2 apache/src/mod_asis.c
Index: mod_asis.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_asis.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mod_asis.c 1997/07/17 22:27:31 1.15
+++ mod_asis.c 1997/07/27 02:08:59 1.16
@@ -58,7 +58,7 @@
#include "http_main.h"
#include "http_request.h"
-int asis_handler (request_rec *r)
+static int asis_handler (request_rec *r)
{
FILE *f;
char *location;
@@ -104,7 +104,7 @@
return OK;
}
-handler_rec asis_handlers[] = {
+static handler_rec asis_handlers[] = {
{ ASIS_MAGIC_TYPE, asis_handler },
{ "send-as-is", asis_handler },
{ NULL }