]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Mon, 2 Jun 1997 05:21:37 +0000 (05:21 +0000)
committerwessels <>
Mon, 2 Jun 1997 05:21:37 +0000 (05:21 +0000)
src/stmem.cc
src/store.cc
src/store_dir.cc
src/tools.cc

index 9e8bd82b4a18739c01f73786e9c8e1cde91d1e30..bcb923d6ebd2ddf6ad2d357c4c6b6b0292d69aa6 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: stmem.cc,v 1.41 1997/05/23 05:15:57 wessels Exp $
+ * $Id: stmem.cc,v 1.42 1997/06/01 23:21:49 wessels Exp $
  *
  * DEBUG: section 19    Memory Primitives
  * AUTHOR: Harvest Derived
@@ -259,7 +259,7 @@ memCopy(const mem_ptr mem, off_t offset, char *buf, size_t size)
     if (p == NULL)
        return -1;
     /*      fatal_dump("memCopy: NULL mem_node"); *//* Can happen on async */
-    assert (size > 0);
+    assert(size > 0);
     /* Seek our way into store */
     while ((t_off + p->len) < offset) {
        t_off += p->len;
index 386be60e77fa709bf364baf393acbeea2706e2e2..ae52a391f2b10ce0572103584bf1bff671d7d8d2 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.246 1997/06/01 18:19:56 wessels Exp $
+ * $Id: store.cc,v 1.247 1997/06/01 23:21:50 wessels Exp $
  *
  * DEBUG: section 20    Storeage Manager
  * AUTHOR: Harvest Derived
@@ -1061,7 +1061,7 @@ storeSwapInStart(StoreEntry * e, SIH * callback, void *callback_data)
        return;
     }
     if (!BIT_TEST(e->flag, ENTRY_VALIDATED)) {
-        if (storeDirMapBitTest(e->swap_file_number)) {
+       if (storeDirMapBitTest(e->swap_file_number)) {
            /* someone took our file while we weren't looking */
            callback(callback_data, -1);
            return;
index ffeaff2aa5f4ce0d7b6d3a7e791462063905bb6d..457a7274ba51a179387f3325254d3382d1b3f76d 100644 (file)
@@ -69,7 +69,7 @@ storeAddSwapDisk(const char *path, int size, int l1, int l2, int read_only)
        xfree(SwapDirs);
        SwapDirs = tmp;
     }
-    debug(20,1,"Creating Swap Dir #%d in %s\n", ncache_dirs+1, path);
+    debug(20, 1, "Creating Swap Dir #%d in %s\n", ncache_dirs + 1, path);
     tmp = SwapDirs + ncache_dirs;
     tmp->path = xstrdup(path);
     tmp->max_size = size;
index bc0508623c3e6da52e5f00c954fcbf1274012168..6b0e5155bfe0bc2b2eeab5a74062d37a23ff2bc1 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: tools.cc,v 1.107 1997/05/23 20:46:13 wessels Exp $
+ * $Id: tools.cc,v 1.108 1997/06/01 23:21:38 wessels Exp $
  *
  * DEBUG: section 21    Misc Functions
  * AUTHOR: Harvest Derived
@@ -445,7 +445,7 @@ sig_child(int sig)
 #else
        pid = waitpid(-1, &status, WNOHANG);
 #endif
-    /* no debug() here; bad things happen if the signal is delivered during _db_print() */
+       /* no debug() here; bad things happen if the signal is delivered during _db_print() */
 #if HAVE_SIGACTION
     } while (pid > 0);
 #else