Implement the NTLM authentication scheme by porting
Mozilla's implementation.
R=darin,eroman
BUG=6567,6824
Review URL: http://codereview.chromium.org/28144
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10667 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/http/http_auth_handler_basic.cc b/net/http/http_auth_handler_basic.cc
index 51c165c6..698b0ab1 100644
--- a/net/http/http_auth_handler_basic.cc
+++ b/net/http/http_auth_handler_basic.cc
@@ -14,6 +14,7 @@
std::string::const_iterator challenge_end) {
scheme_ = "basic";
score_ = 1;
+ properties_ = 0;
// Verify the challenge's auth-scheme.
HttpAuth::ChallengeTokenizer challenge_tok(challenge_begin, challenge_end);