]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Thu, 28 Nov 1996 14:31:47 +0000 (14:31 +0000)
committerwessels <>
Thu, 28 Nov 1996 14:31:47 +0000 (14:31 +0000)
src/comm.cc
src/http.cc
src/neighbors.cc

index b60b808488e04201871de255eb4359769a129edd..5ab6a8d2a024b1739344d25dedd03f89162fd9af 100644 (file)
@@ -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);
index ee9024ef3e742b4cc37f3e5f9fce2df7bd1aea10..6e20cdef081652dc7ac18d1d86b5c9aeb6f0ed6c 100644 (file)
@@ -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)
index e257b22956633825c6b82ddbe8c35259d5f36320..020f4474aa22a52a42e3944d2b491f6d959691d0 100644 (file)
@@ -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;