From: Source Maintenance Date: Wed, 20 Apr 2016 06:14:12 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_5_17~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dd9397300bb42a779f59ecf1bf3d4f35a9b607e;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/tools/cachemgr.cc b/tools/cachemgr.cc index a4545bf273..8c7729e0f8 100644 --- a/tools/cachemgr.cc +++ b/tools/cachemgr.cc @@ -461,12 +461,12 @@ munge_menu_line(MemBuf &out, const char *buf, cachemgr_request * req) /* disable link if authentication is required and we have no password */ if (!strcmp(p, "protected") && !req->passwd) out.Printf("
  • %s (requires authentication).\n", - d, menu_url(req, "authenticate"), a_url); + d, menu_url(req, "authenticate"), a_url); else /* highlight protected but probably available entries */ if (!strcmp(p, "protected")) out.Printf("
  • %s\n", - a_url, d); + a_url, d); /* public entry or unknown type of protection */ else @@ -529,9 +529,9 @@ munge_other_line(MemBuf &out, const char *buf, cachemgr_request *) } out.Printf("<%s colspan=\"%d\" align=\"%s\">%s", - ttag, column_span, - is_header ? "center" : is_number(cell) ? "right" : "left", - html_quote(cell), ttag); + ttag, column_span, + is_header ? "center" : is_number(cell) ? "right" : "left", + html_quote(cell), ttag); } xfree(buf_copy);