From: wessels <> Date: Mon, 25 Nov 1996 13:15:29 +0000 (+0000) Subject: gindent X-Git-Tag: SQUID_3_0_PRE1~5410 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b785f8ca1b9998aee0157dcac36d8be23bfdd011;p=thirdparty%2Fsquid.git gindent --- diff --git a/src/cachemgr.cc b/src/cachemgr.cc index 0e875117f5..ee91b6e8ac 100644 --- a/src/cachemgr.cc +++ b/src/cachemgr.cc @@ -1,6 +1,6 @@ /* - * $Id: cachemgr.cc,v 1.46 1996/11/23 07:09:45 wessels Exp $ + * $Id: cachemgr.cc,v 1.47 1996/11/25 06:15:29 wessels Exp $ * * DEBUG: Section 0 CGI Cache Manager * AUTHOR: Harvest Derived @@ -899,9 +899,15 @@ main(int argc, char *argv[]) p_state = 1; for (s = reserve; *s; s++) switch (*s) { - case '<': printf("<"); break; - case '&': printf("&"); break; - default: putchar(*s); break; + case '<': + printf("<"); + break; + case '&': + printf("&"); + break; + default: + putchar(*s); + break; } break; case INFO: diff --git a/src/fqdncache.cc b/src/fqdncache.cc index b719953799..62c115ee21 100644 --- a/src/fqdncache.cc +++ b/src/fqdncache.cc @@ -1,6 +1,6 @@ /* - * $Id: fqdncache.cc,v 1.41 1996/11/24 04:33:00 wessels Exp $ + * $Id: fqdncache.cc,v 1.42 1996/11/25 06:15:30 wessels Exp $ * * DEBUG: section 35 FQDN Cache * AUTHOR: Harvest Derived @@ -510,7 +510,7 @@ fqdncache_parsebuffer(const char *inbuf, dnsserver_t * dnsData) return &f; } -static void +static void fqdncache_dnsHandleRead(int fd, void *data) { dnsserver_t *dnsData = data; diff --git a/src/mime.cc b/src/mime.cc index 35f7da7c7e..7d5ef466d5 100644 --- a/src/mime.cc +++ b/src/mime.cc @@ -1,5 +1,5 @@ /* - * $Id: mime.cc,v 1.24 1996/11/23 07:06:56 wessels Exp $ + * $Id: mime.cc,v 1.25 1996/11/25 06:15:31 wessels Exp $ * * DEBUG: section 25 MIME Parsing * AUTHOR: Harvest Derived @@ -134,7 +134,7 @@ mime_get_header(const char *mime, const char *name) continue; l = strcspn(p, "\n\r") + 1; if (l > GET_HDR_SZ) - l = GET_HDR_SZ; + l = GET_HDR_SZ; xstrncpy(header, p, l); debug(25, 5, "mime_get_header: checking '%s'\n", header); q = header;