coar 98/01/20 07:28:39
Modified: src/main http_protocol.c
Log:
Fix a couple of indents.
Revision Changes Path
1.177 +3 -3 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.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- http_protocol.c 1998/01/20 00:33:12 1.176
+++ http_protocol.c 1998/01/20 15:28:38 1.177
@@ -2045,18 +2045,18 @@
char *h1 = 4 + status_lines[idx];
bvputs(fd, "<HTML><HEAD>\n<TITLE>", title,
- "</TITLE>\n</HEAD><BODY>\n<H1>", h1, "</H1>\n",
+ "</TITLE>\n</HEAD><BODY>\n<H1>", h1, "</H1>\n",
NULL);
switch (status) {
case REDIRECT:
case MOVED:
bvputs(fd, "The document has moved <A HREF=\"",
- escape_html(r->pool, location), "\">here</A>.<P>\n", NULL);
+ escape_html(r->pool, location), "\">here</A>.<P>\n",
NULL);
break;
case HTTP_SEE_OTHER:
bvputs(fd, "The answer to your request is located <A HREF=\"",
- escape_html(r->pool, location), "\">here</A>.<P>\n", NULL);
+ escape_html(r->pool, location), "\">here</A>.<P>\n",
NULL);
break;
case HTTP_USE_PROXY:
bvputs(fd, "This resource is only accessible through the
proxy\n",