From: Art Cancro Date: Thu, 15 Mar 2012 18:30:54 +0000 (-0400) Subject: updated copyright notice in webcit.c and cleaned up some indents X-Git-Tag: v8.11~127^2~23 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=f87fa1983800e3f18c4729ca0d18b2b66f3f43d3 updated copyright notice in webcit.c and cleaned up some indents --- diff --git a/webcit/webcit.c b/webcit/webcit.c index 98ae071dd..224a9d220 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -3,15 +3,10 @@ * persistent session to the Citadel server, handling HTTP WebCit requests as * they arrive and presenting a user interface. * - * Copyright (c) 1996-2011 by the citadel.org team + * Copyright (c) 1996-2012 by the citadel.org team * * This program is open source software. You can redistribute it and/or * modify it under the terms of the GNU General Public License, version 3. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. */ #define SHOW_ME_VAPPEND_PRINTF @@ -208,10 +203,10 @@ void output_headers( int do_httpheaders, /* 1 = output HTTP headers */ } void output_custom_content_header(const char *ctype) { - hprintf("HTTP/1.1 200 OK\r\n"); - hprintf("Content-type: %s; charset=utf-8\r\n",ctype); - hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)); - hprintf("Connection: close\r\n"); + hprintf("HTTP/1.1 200 OK\r\n"); + hprintf("Content-type: %s; charset=utf-8\r\n",ctype); + hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)); + hprintf("Connection: close\r\n"); }