From 1dc6c7f9b668ecc6b996dc8e16049253f8b8782b Mon Sep 17 00:00:00 2001 From: hno <> Date: Thu, 9 Nov 2006 23:45:49 +0000 Subject: [PATCH] Bug #1823: ntlm_auth/SMB/ntlm_auth.c fails to compile on some platforms due to a syntax error --- helpers/ntlm_auth/SMB/ntlm_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/ntlm_auth/SMB/ntlm_auth.c b/helpers/ntlm_auth/SMB/ntlm_auth.c index 99840fc042..cf987b9085 100644 --- a/helpers/ntlm_auth/SMB/ntlm_auth.c +++ b/helpers/ntlm_auth/SMB/ntlm_auth.c @@ -308,7 +308,7 @@ manage_request() SEND("NA Broken authentication packet"); return; } - switch le32toh(fast_header->type) { + switch (le32toh(fast_header->type)) { case NTLM_NEGOTIATE: SEND("NA Invalid negotiation request received"); return; -- 2.47.3