From: wessels <> Date: Thu, 28 Nov 1996 14:31:47 +0000 (+0000) Subject: gindent X-Git-Tag: SQUID_3_0_PRE1~5378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bdcddea1201f7de7ff6625322dee77f4a15376f;p=thirdparty%2Fsquid.git gindent --- diff --git a/src/comm.cc b/src/comm.cc index b60b808488..5ab6a8d2a0 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $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 @@ -509,7 +509,7 @@ commCallCloseHandlers(int fd) { 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); diff --git a/src/http.cc b/src/http.cc index ee9024ef3e..6e20cdef08 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,5 +1,5 @@ /* - * $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 @@ -688,7 +688,7 @@ httpSendRequest(int fd, void *data) 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; @@ -718,8 +718,8 @@ httpSendRequest(int fd, void *data) /* 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) diff --git a/src/neighbors.cc b/src/neighbors.cc index e257b22956..020f4474aa 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,5 +1,5 @@ /* - * $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 @@ -881,7 +881,7 @@ int 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;