]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed bug in NTLM auth helper which would show up on non-gcc compilers
authorFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 25 Jan 2011 21:30:11 +0000 (22:30 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 25 Jan 2011 21:30:11 +0000 (22:30 +0100)
helpers/ntlm_auth/fake/ntlm_fake_auth.cc

index 85b7761528c227165b0f6271240755fcc4ba244c..4a02db77f5ebae721e1e3113e2c047ed2e3027f2 100644 (file)
@@ -84,7 +84,7 @@
 #else
 /* no gcc, no debugging. varargs macros are a gcc extension */
 #define SEND2(X,Y) debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);
-#define SEND4(X,Y,Z,W) debug("sending '" X "' to squid\n",Y,Z); printf(X "\n",Y,Z);
+#define SEND4(X,Y,Z,W) debug("sending '" X "' to squid\n",Y,Z,W); printf(X "\n",Y,Z,W);
 #endif
 
 const char *authenticate_ntlm_domain = "WORKGROUP";