Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id TAA27219; Sat, 26 Jul 1997 19:09:06 -0700 (PDT) Received: (from dgaudet@localhost) by hyperreal.org (8.8.5/8.8.5) id TAA27170 for apache-cvs; Sat, 26 Jul 1997 19:09:00 -0700 (PDT) Date: Sat, 26 Jul 1997 19:09:00 -0700 (PDT) From: Dean Gaudet Message-Id: <199707270209.TAA27170@hyperreal.org> To: apache-cvs@hyperreal.org Subject: cvs commit: apache/src mod_asis.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org 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 }