From: wessels <> Date: Tue, 25 Feb 1997 03:22:08 +0000 (+0000) Subject: gindent X-Git-Tag: SQUID_3_0_PRE1~5079 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bba6fa8f8c68a54c229efaede3ae3aa494ad7b78;p=thirdparty%2Fsquid.git gindent --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index e8a4be1541..618913bc99 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -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")) diff --git a/src/http.cc b/src/http.cc index 2ae35c589f..da991eb1af 100644 --- a/src/http.cc +++ b/src/http.cc @@ -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 */ diff --git a/src/neighbors.cc b/src/neighbors.cc index e49a96b5cf..2ec9dd1738 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -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) {