]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
revision 1.49
authorhno <>
Thu, 9 Jan 2003 18:44:05 +0000 (18:44 +0000)
committerhno <>
Thu, 9 Jan 2003 18:44:05 +0000 (18:44 +0000)
date: 2003/01/08 20:55:46;  author: wessels;  state: Exp;  lines: +12 -7
Some nitpicks and cleanup relating to cache manager helper stats and
user authentication:
- debugging statement in helperStatefulDefer() reported wrong function name
- formatted some comments for 80 columns
- added "program name" to helpeStats() output
- fixed formatting for helperStatefulStats() so columns line up again
- added authentication type (basic/digest/ntml) to cachemgr menu description
- ran gindent

src/auth/basic/auth_basic.cc
src/auth/digest/auth_digest.cc

index ce7a6f6432fc18462edb83145181f70bc3641a8e..53401f76103b09d94adf4d4292a9db62fe539aaf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: auth_basic.cc,v 1.20 2002/10/15 09:25:34 robertc Exp $
+ * $Id: auth_basic.cc,v 1.21 2003/01/09 11:44:05 hno Exp $
  *
  * DEBUG: section 29    Authenticator
  * AUTHOR: Duane Wessels
@@ -307,7 +307,7 @@ authBasicCfgDump(StoreEntry * entry, const char *name, authScheme * scheme)
     storeAppendPrintf(entry, "\n%s %s realm %s\n%s %s children %d\n%s %s credentialsttl %d seconds\n",
        name, "basic", config->basicAuthRealm,
        name, "basic", config->authenticateChildren,
-       name, "basic", (int)config->credentialsTTL);
+       name, "basic", (int) config->credentialsTTL);
 
 }
 
@@ -546,7 +546,7 @@ authBasicInit(authScheme * scheme)
        helperOpenServers(basicauthenticators);
        if (!init) {
            cachemgrRegister("basicauthenticator",
-               "User Authenticator Stats",
+               "Basic User Authenticator Stats",
                authenticateBasicStats, 0, 1);
            init++;
        }
index 3c62a1c8864d5f5b219c0bf63d9611ab3387b52d..58c4cb2ae63b4008330edc90b72ce3926c188598 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: auth_digest.cc,v 1.17 2002/10/15 09:25:34 robertc Exp $
+ * $Id: auth_digest.cc,v 1.18 2003/01/09 11:44:08 hno Exp $
  *
  * DEBUG: section 29    Authenticator
  * AUTHOR: Robert Collins
@@ -881,7 +881,7 @@ authDigestInit(authScheme * scheme)
        digestauthenticators->ipc_type = IPC_STREAM;
        helperOpenServers(digestauthenticators);
        if (!init) {
-           cachemgrRegister("digestauthenticator", "User Authenticator Stats",
+           cachemgrRegister("digestauthenticator", "Digest User Authenticator Stats",
                authenticateDigestStats, 0, 1);
            init++;
        }