Title: [152514] trunk/Source/WebCore
Revision
152514
Author
[email protected]
Date
2013-07-09 14:00:26 -0700 (Tue, 09 Jul 2013)

Log Message

AuthenticationMac.mm does not handle NSURLAuthenticationMethodNegotiate in WebCore::mac()
https://bugs.webkit.org/show_bug.cgi?id=118518

Reviewed by Alexey Proskuryakov.

* platform/network/mac/AuthenticationMac.mm:
(WebCore::mac):
Map ProtectionSpaceAuthenticationSchemeNegotiate to NSURLAuthenticationMethodNegotiate.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152513 => 152514)


--- trunk/Source/WebCore/ChangeLog	2013-07-09 20:17:41 UTC (rev 152513)
+++ trunk/Source/WebCore/ChangeLog	2013-07-09 21:00:26 UTC (rev 152514)
@@ -1,5 +1,16 @@
 2013-07-09  Jeff Miller  <[email protected]>
 
+        AuthenticationMac.mm does not handle NSURLAuthenticationMethodNegotiate in WebCore::mac()
+        https://bugs.webkit.org/show_bug.cgi?id=118518
+
+        Reviewed by Alexey Proskuryakov.
+
+        * platform/network/mac/AuthenticationMac.mm:
+        (WebCore::mac):
+        Map ProtectionSpaceAuthenticationSchemeNegotiate to NSURLAuthenticationMethodNegotiate.
+
+2013-07-09  Jeff Miller  <[email protected]>
+
         AuthenticationMac.mm does not handle NSURLAuthenticationMethodNegotiate
         https://bugs.webkit.org/show_bug.cgi?id=118517
 

Modified: trunk/Source/WebCore/platform/network/mac/AuthenticationMac.mm (152513 => 152514)


--- trunk/Source/WebCore/platform/network/mac/AuthenticationMac.mm	2013-07-09 20:17:41 UTC (rev 152513)
+++ trunk/Source/WebCore/platform/network/mac/AuthenticationMac.mm	2013-07-09 21:00:26 UTC (rev 152514)
@@ -283,6 +283,9 @@
         case ProtectionSpaceAuthenticationSchemeNTLM:
             method = NSURLAuthenticationMethodNTLM;
             break;
+        case ProtectionSpaceAuthenticationSchemeNegotiate:
+            method = NSURLAuthenticationMethodNegotiate;
+            break;
 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
         case ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested:
             method = NSURLAuthenticationMethodServerTrust;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to