From: hno <> Date: Sun, 11 Jun 2006 18:53:36 +0000 (+0000) Subject: Accept (and ignore) the NTLM negotiate packet X-Git-Tag: SQUID_3_0_PRE4~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e26dfa1eee2e288a7d387307d6954bed8a02477;p=thirdparty%2Fsquid.git Accept (and ignore) the NTLM negotiate packet --- diff --git a/helpers/ntlm_auth/no_check/no_check.pl b/helpers/ntlm_auth/no_check/no_check.pl index b0a1114122..891d0ddb67 100644 --- a/helpers/ntlm_auth/no_check/no_check.pl +++ b/helpers/ntlm_auth/no_check/no_check.pl @@ -15,7 +15,7 @@ die ("Edit $0 to configure a domain!") unless (defined($authdomain)); while() { chop; - if ($_ eq "YR") { + if (substr($_, 2) eq "YR") { print "TT ".encode_base64(&make_ntlm_static_challenge); next; }