/*
- * $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
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"))
/*
- * $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
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 */
/*
- * $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
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) {