]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Mon, 25 Nov 1996 13:15:29 +0000 (13:15 +0000)
committerwessels <>
Mon, 25 Nov 1996 13:15:29 +0000 (13:15 +0000)
src/cachemgr.cc
src/fqdncache.cc
src/mime.cc

index 0e875117f52dea5a7fe5cd9288e27a4d54c93188..ee91b6e8ac6367f620d23ce0eef74b7dad3df641 100644 (file)
@@ -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("&lt;");  break;
-                       case '&': printf("&amp;"); break;
-                       default:  putchar(*s);     break;
+                       case '<':
+                           printf("&lt;");
+                           break;
+                       case '&':
+                           printf("&amp;");
+                           break;
+                       default:
+                           putchar(*s);
+                           break;
                        }
                    break;
                case INFO:
index b719953799827330dfefdb44432391e195883539..62c115ee21be4ea2f25071292b52449637a65e4a 100644 (file)
@@ -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;
index 35f7da7c7e7c6dca763785a31ba9d023f6184413..7d5ef466d53d79b09f7068f899faeb588daa78bb 100644 (file)
@@ -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;