/*
- * $Id: comm.cc,v 1.110 1996/11/28 07:07:27 wessels Exp $
+ * $Id: comm.cc,v 1.111 1996/11/28 07:31:47 wessels Exp $
*
* DEBUG: section 5 Socket Functions
* AUTHOR: Harvest Derived
{
FD_ENTRY *conn = &fd_table[fd];
struct close_handler *ch;
- debug(5,5,"commCallCloseHandlers: FD %d\n", fd);
+ debug(5, 5, "commCallCloseHandlers: FD %d\n", fd);
while ((ch = conn->close_handler) != NULL) {
conn->close_handler = ch->next;
ch->handler(fd, ch->data);
/*
- * $Id: http.cc,v 1.118 1996/11/28 07:11:51 wessels Exp $
+ * $Id: http.cc,v 1.119 1996/11/28 07:31:49 wessels Exp $
*
* DEBUG: section 11 Hypertext Transfer Protocol (HTTP)
* AUTHOR: Harvest Derived
continue;
}
if (EBIT_TEST(hdr_flags, HDR_IMS))
- if (!strncasecmp(t, "If-Modified-Since:", 18))
+ if (!strncasecmp(t, "If-Modified-Since:", 18))
continue;
if (len + (int) strlen(t) > buflen - 10)
continue;
/* Append to X-Forwarded-For: */
if (fwdbuf == NULL) {
- fwdbuf = get_free_4k_page();
- strcpy(fwdbuf, "X-Forwarded-For: ");
+ fwdbuf = get_free_4k_page();
+ strcpy(fwdbuf, "X-Forwarded-For: ");
}
ybuf = get_free_4k_page();
if (!opt_forwarded_for)
/*
- * $Id: neighbors.cc,v 1.92 1996/11/27 22:19:20 wessels Exp $
+ * $Id: neighbors.cc,v 1.93 1996/11/28 07:31:52 wessels Exp $
*
* DEBUG: section 15 Neighbor Routines
* AUTHOR: Harvest Derived
neighborUp(edge * e)
{
if (e->last_fail_time)
- if (squid_curtime - e->last_fail_time > (time_t) 60)
+ if (squid_curtime - e->last_fail_time > (time_t) 60)
return 0;
if (e->stats.ack_deficit > HIER_MAX_DEFICIT)
return 0;