From: Francesco Chemolli Date: Tue, 25 Jan 2011 21:30:11 +0000 (+0100) Subject: Fixed bug in NTLM auth helper which would show up on non-gcc compilers X-Git-Tag: take03^2~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=079c2dd49d857e04fcc51d122865bbe7e972459e;p=thirdparty%2Fsquid.git Fixed bug in NTLM auth helper which would show up on non-gcc compilers --- diff --git a/helpers/ntlm_auth/fake/ntlm_fake_auth.cc b/helpers/ntlm_auth/fake/ntlm_fake_auth.cc index 85b7761528..4a02db77f5 100644 --- a/helpers/ntlm_auth/fake/ntlm_fake_auth.cc +++ b/helpers/ntlm_auth/fake/ntlm_fake_auth.cc @@ -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";