Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1291)

Unified Diff: net/http/http_auth_handler_ntlm_portable.cc

Issue 1099453002: base: Simplify the construction of MD5Digest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/media/webrtc/media_stream_track_metrics.cc ('k') | net/server/web_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_handler_ntlm_portable.cc
diff --git a/net/http/http_auth_handler_ntlm_portable.cc b/net/http/http_auth_handler_ntlm_portable.cc
index 237e33a9825efe6a9885bdb2abfe286fa673e558..0c706117e1113dd95ad1d5203659fb85456d6a00 100644
--- a/net/http/http_auth_handler_ntlm_portable.cc
+++ b/net/http/http_auth_handler_ntlm_portable.cc
@@ -561,7 +561,7 @@ static int GenerateType3Msg(const base::string16& domain,
base::MD5Sum(temp, 16, &session_hash);
NTLM_Hash(password, ntlm_hash);
- LM_Response(ntlm_hash, session_hash.a, ntlm_resp);
+ LM_Response(ntlm_hash, session_hash, ntlm_resp);
} else {
NTLM_Hash(password, ntlm_hash);
LM_Response(ntlm_hash, msg.challenge, ntlm_resp);
« no previous file with comments | « content/renderer/media/webrtc/media_stream_track_metrics.cc ('k') | net/server/web_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698