]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Tue, 25 Feb 1997 03:22:08 +0000 (03:22 +0000)
committerwessels <>
Tue, 25 Feb 1997 03:22:08 +0000 (03:22 +0000)
src/cache_cf.cc
src/http.cc
src/neighbors.cc

index e8a4be15417ba59be139cd03cbe6c813ffd30683..618913bc99c466c1c8da9d287bc2b0057ac15d24 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: cache_cf.cc,v 1.173 1997/02/20 22:22:55 wessels Exp $
+ * $Id: cache_cf.cc,v 1.174 1997/02/24 20:22:08 wessels Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -1032,7 +1032,7 @@ parseHttpAnonymizer(int *iptr)
     char *token;
     token = strtok(NULL, w_space);
     if (token == NULL)
-        self_destruct();
+       self_destruct();
     if (!strcasecmp(token, "off"))
        *iptr = ANONYMIZER_NONE;
     else if (!strcasecmp(token, "paranoid"))
index 2ae35c589faef29abb2e070e9c482108ba6f9967..da991eb1af8ae1cc0718a3135d5676367d212cb6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: http.cc,v 1.148 1997/02/20 22:23:02 wessels Exp $
+ * $Id: http.cc,v 1.149 1997/02/24 20:22:10 wessels Exp $
  *
  * DEBUG: section 11    Hypertext Transfer Protocol (HTTP)
  * AUTHOR: Harvest Derived
@@ -689,10 +689,10 @@ httpAppendRequestHeader(char *hdr, const char *line, size_t * sz, size_t max)
     if (n >= max)
        return;
     if (Config.Options.anonymizer == ANONYMIZER_PARANOID) {
-        if (!httpAnonAllowed(line))
+       if (!httpAnonAllowed(line))
            return;
     } else if (Config.Options.anonymizer == ANONYMIZER_STANDARD) {
-        if (httpAnonDenied(line))
+       if (httpAnonDenied(line))
            return;
     }
     /* allowed header, explicitly known to be not dangerous */
index e49a96b5cff9b38d3440db10d7e7614cf527426f..2ec9dd17388d7e2d131ae4b677e0aacec838d389 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: neighbors.cc,v 1.118 1997/02/24 20:21:38 wessels Exp $
+ * $Id: neighbors.cc,v 1.119 1997/02/24 20:22:11 wessels Exp $
  *
  * DEBUG: section 15    Neighbor Routines
  * AUTHOR: Harvest Derived
@@ -769,9 +769,9 @@ neighborsUdpAck(int fd, const char *url, icp_common_t * header, const struct soc
            debug(15, 1, "Ignoring MISS from non-peer %s\n",
                inet_ntoa(from->sin_addr));
        } else if (ntype != PEER_PARENT) {
-               (void) 0;       /* ignore MISS from non-parent */
+           (void) 0;           /* ignore MISS from non-parent */
        } else if (BIT_TEST(e->options, NEIGHBOR_MCAST_RESPONDER) && !peerHTTPOkay(e, mem->request)) {
-               (void) 0;       /* ignore multicast miss */
+           (void) 0;           /* ignore multicast miss */
        } else {
            w_rtt = tvSubMsec(mem->start_ping, current_time) / e->weight;
            if (mem->w_rtt == 0 || w_rtt < mem->w_rtt) {