Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id TAA12426; Sun, 31 Aug 1997 19:46:53 -0700 (PDT) Received: (from coar@localhost) by hyperreal.org (8.8.5/8.8.5) id TAA12419 for apache-cvs; Sun, 31 Aug 1997 19:46:50 -0700 (PDT) Date: Sun, 31 Aug 1997 19:46:50 -0700 (PDT) From: Rodent of Unusual Size Message-Id: <199709010246.TAA12419@hyperreal.org> To: apache-cvs@hyperreal.org Subject: cvs commit: apachen/src/main http_protocol.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org coar 97/08/31 19:46:49 Modified: src/main http_protocol.c Log: Replace use of FORBIDDEN with HTTP_FORBIDDEN. Revision Changes Path 1.157 +1 -1 apachen/src/main/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /export/home/cvs/apachen/src/main/http_protocol.c,v retrieving revision 1.156 retrieving revision 1.157 diff -u -r1.156 -r1.157 --- http_protocol.c 1997/08/31 21:28:52 1.156 +++ http_protocol.c 1997/09/01 02:46:47 1.157 @@ -2056,7 +2056,7 @@ bputs("Your browser sent a request that\n", fd); bputs("this server could not understand.

\n", fd); break; - case FORBIDDEN: + case HTTP_FORBIDDEN: bvputs(fd, "You don't have permission to access ", escape_html(r->pool, r->uri), "\non this server.

\n", NULL);