| 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 7c08e1469f577afadcdedac0f0cb38b8bff05db5..f65b10495c22ec2cb2717d2279b311dc129a0cbc 100644
|
| --- a/net/http/http_auth_handler_ntlm_portable.cc
|
| +++ b/net/http/http_auth_handler_ntlm_portable.cc
|
| @@ -121,13 +121,12 @@ enum {
|
|
|
| // We send these flags with our type 1 message.
|
| enum {
|
| - NTLM_TYPE1_FLAGS =
|
| - NTLM_NegotiateUnicode |
|
| - NTLM_NegotiateOEM |
|
| - NTLM_RequestTarget |
|
| - NTLM_NegotiateNTLMKey |
|
| - NTLM_NegotiateAlwaysSign |
|
| - NTLM_NegotiateNTLM2Key
|
| + NTLM_TYPE1_FLAGS = (NTLM_NegotiateUnicode |
|
| + NTLM_NegotiateOEM |
|
| + NTLM_RequestTarget |
|
| + NTLM_NegotiateNTLMKey |
|
| + NTLM_NegotiateAlwaysSign |
|
| + NTLM_NegotiateNTLM2Key)
|
| };
|
|
|
| static const char NTLM_SIGNATURE[] = "NTLMSSP";
|
|
|