From: wessels <> Date: Tue, 27 Aug 1996 23:55:18 +0000 (+0000) Subject: gindent X-Git-Tag: SQUID_3_0_PRE1~5904 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c93e1198b9f1f1aa07add70bc68384052837bdf;p=thirdparty%2Fsquid.git gindent --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index e5843c4fd4..7ddee840b1 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_cf.cc,v 1.74 1996/08/27 17:48:12 wessels Exp $ + * $Id: cache_cf.cc,v 1.75 1996/08/27 17:55:18 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -596,8 +596,8 @@ static void parseQuickAbort() Config.quickAbort.pct = 0; Config.quickAbort.max = 0; } else { - if (sscanf(token, "%d", &i) != 1) - self_destruct(); + if (sscanf(token, "%d", &i) != 1) + self_destruct(); Config.quickAbort.min = i * 1024; GetInteger(i); Config.quickAbort.pct = i * 128 / 100; /* 128 is full scale */ diff --git a/src/main.cc b/src/main.cc index 22d4c914ca..f59df7c805 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,5 +1,5 @@ /* - * $Id: main.cc,v 1.65 1996/08/27 16:05:08 wessels Exp $ + * $Id: main.cc,v 1.66 1996/08/27 17:57:46 wessels Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -629,7 +629,7 @@ int main(argc, argv) } break; case COMM_TIMEOUT: - break; + break; default: fatal_dump("MAIN: Internal error -- this should never happen."); break;