]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Thu, 5 Dec 1996 01:22:45 +0000 (01:22 +0000)
committerwessels <>
Thu, 5 Dec 1996 01:22:45 +0000 (01:22 +0000)
src/cache_cf.cc
src/dns.cc
src/main.cc

index 6afc7662bb123235699108d00b915c27a06a5cc3..dbb3a2052ab459daac6ecc52ae892c85f06d46f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: cache_cf.cc,v 1.152 1996/12/04 17:51:40 wessels Exp $
+ * $Id: cache_cf.cc,v 1.153 1996/12/04 18:22:45 wessels Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -1588,5 +1588,5 @@ configDoConfigure(void)
     sprintf(ThisCache, "%s:%d (Squid/%s)",
        getMyHostname(),
        (int) Config.Port.http,
-        SQUID_VERSION);
+       SQUID_VERSION);
 }
index 81e0bdd950fc0d733e2a0eac5e02d32795a0aae7..1cab5e2c8702af85ec5c81b2af0fa465be83819d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: dns.cc,v 1.27 1996/12/04 17:50:34 wessels Exp $
+ * $Id: dns.cc,v 1.28 1996/12/04 18:22:47 wessels Exp $
  *
  * DEBUG: section 34    Dnsserver interface
  * AUTHOR: Harvest Derived
@@ -251,7 +251,7 @@ dnsOpenServers(void)
     for (k = 0; k < N; k++) {
        dns_child_table[k] = xcalloc(1, sizeof(dnsserver_t));
        if ((dnssocket = dnsOpenServer(prg)) < 0) {
-           debug(34, 1, "dnsOpenServers: WARNING: Failed to start 'dnsserver' #%d.\n", k+1);
+           debug(34, 1, "dnsOpenServers: WARNING: Failed to start 'dnsserver' #%d.\n", k + 1);
            dns_child_table[k]->flags &= ~DNS_FLAG_ALIVE;
            dns_child_table[k]->id = k + 1;
            dns_child_table[k]->inpipe = -1;
index dfcb43a4185a37cf455c90e58f6e575ec3b30164..c366c96595924923b760a544d452d0f96fcc0207 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: main.cc,v 1.124 1996/12/04 17:51:43 wessels Exp $
+ * $Id: main.cc,v 1.125 1996/12/04 18:22:47 wessels Exp $
  *
  * DEBUG: section 1     Startup and Main Loop
  * AUTHOR: Harvest Derived
@@ -137,7 +137,7 @@ struct in_addr any_addr;
 struct in_addr theOutICPAddr;
 const char *const dash_str = "-";
 const char *const null_string = "";
-char ThisCache[SQUIDHOSTNAMELEN<<1];
+char ThisCache[SQUIDHOSTNAMELEN << 1];
 
 /* for error reporting from xmalloc and friends */
 extern void (*failure_notify) _PARAMS((const char *));