--------------------- PatchSet 1116 Date: 2001/01/06 13:35:08 Author: rbcollins Branch: auth_rewrite Tag: (none) Log: make config dump for basic look consistent with the rest of squid Members: src/auth/basic/auth_basic.c:1.1.2.19->1.1.2.20 Index: squid/src/auth/basic/auth_basic.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/auth/basic/auth_basic.c,v retrieving revision 1.1.2.19 retrieving revision 1.1.2.20 diff -u -r1.1.2.19 -r1.1.2.20 --- squid/src/auth/basic/auth_basic.c 6 Jan 2001 13:31:53 -0000 1.1.2.19 +++ squid/src/auth/basic/auth_basic.c 6 Jan 2001 13:35:08 -0000 1.1.2.20 @@ -336,10 +336,10 @@ storeAppendPrintf(entry, "%s %s", name, "basic"); while (list !=NULL) { - storeAppendPrintf(entry, "%s ", list->key); + storeAppendPrintf(entry, " %s", list->key); list = list->next; } - storeAppendPrintf(entry, "\n%s %s realm='%s'\n%s %s children=%d\n%s %s credentialsttl=%d seconds\n", + 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", config->credentialsTTL);