Title: [152513] trunk/Source/WebCore
Revision
152513
Author
[email protected]
Date
2013-07-09 13:17:41 -0700 (Tue, 09 Jul 2013)

Log Message

AuthenticationMac.mm does not handle NSURLAuthenticationMethodNegotiate
https://bugs.webkit.org/show_bug.cgi?id=118517

Reviewed by Brady Eidson.

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

Modified Paths

Diff

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


--- trunk/Source/WebCore/ChangeLog	2013-07-09 19:01:11 UTC (rev 152512)
+++ trunk/Source/WebCore/ChangeLog	2013-07-09 20:17:41 UTC (rev 152513)
@@ -1,3 +1,14 @@
+2013-07-09  Jeff Miller  <[email protected]>
+
+        AuthenticationMac.mm does not handle NSURLAuthenticationMethodNegotiate
+        https://bugs.webkit.org/show_bug.cgi?id=118517
+
+        Reviewed by Brady Eidson.
+
+        * platform/network/mac/AuthenticationMac.mm:
+        (WebCore::core):
+        Map "NSURLAuthenticationMethodNegotiate" to ProtectionSpaceAuthenticationSchemeNegotiate.
+
 2013-07-09  [email protected]  <[email protected]>
 
         [Windows] Compile fix.

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


--- trunk/Source/WebCore/platform/network/mac/AuthenticationMac.mm	2013-07-09 19:01:11 UTC (rev 152512)
+++ trunk/Source/WebCore/platform/network/mac/AuthenticationMac.mm	2013-07-09 20:17:41 UTC (rev 152513)
@@ -389,6 +389,8 @@
         scheme = ProtectionSpaceAuthenticationSchemeHTMLForm;
     else if ([method isEqualToString:NSURLAuthenticationMethodNTLM])
         scheme = ProtectionSpaceAuthenticationSchemeNTLM;
+    else if ([method isEqualToString:NSURLAuthenticationMethodNegotiate])
+        scheme = ProtectionSpaceAuthenticationSchemeNegotiate;
 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
     else if ([method isEqualToString:NSURLAuthenticationMethodClientCertificate])
         scheme = ProtectionSpaceAuthenticationSchemeClientCertificateRequested;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to