Title: [287337] branches/safari-612-branch/Source/WebCore
Revision
287337
Author
[email protected]
Date
2021-12-21 16:14:33 -0800 (Tue, 21 Dec 2021)

Log Message

Cherry-pick r287107. rdar://problem/85150486

    Unreviewed build fix after r287077.

    * platform/network/ProtectionSpaceHash.h:
    (WebCore::ProtectionSpaceHash::hash):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@287107 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-612-branch/Source/WebCore/ChangeLog (287336 => 287337)


--- branches/safari-612-branch/Source/WebCore/ChangeLog	2021-12-22 00:14:30 UTC (rev 287336)
+++ branches/safari-612-branch/Source/WebCore/ChangeLog	2021-12-22 00:14:33 UTC (rev 287337)
@@ -1,5 +1,23 @@
 2021-12-21  Alan Coon  <[email protected]>
 
+        Cherry-pick r287107. rdar://problem/85150486
+
+    Unreviewed build fix after r287077.
+    
+    * platform/network/ProtectionSpaceHash.h:
+    (WebCore::ProtectionSpaceHash::hash):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@287107 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-12-15  Chris Dumez  <[email protected]>
+
+            Unreviewed build fix after r287077.
+
+            * platform/network/ProtectionSpaceHash.h:
+            (WebCore::ProtectionSpaceHash::hash):
+
+2021-12-21  Alan Coon  <[email protected]>
+
         Cherry-pick r287077. rdar://problem/85150486
 
     http/tests/security/basic-auth-subresource.html and some other http auth tests are flaky

Modified: branches/safari-612-branch/Source/WebCore/platform/network/ProtectionSpaceHash.h (287336 => 287337)


--- branches/safari-612-branch/Source/WebCore/platform/network/ProtectionSpaceHash.h	2021-12-22 00:14:30 UTC (rev 287336)
+++ branches/safari-612-branch/Source/WebCore/platform/network/ProtectionSpaceHash.h	2021-12-22 00:14:33 UTC (rev 287337)
@@ -37,8 +37,8 @@
         Hasher hasher;
         add(hasher, protectionSpace.host());
         add(hasher, protectionSpace.port());
-        add(hasher, protectionSpace.serverType());
-        add(hasher, protectionSpace.authenticationScheme());
+        add(hasher, static_cast<unsigned>(protectionSpace.serverType()));
+        add(hasher, static_cast<unsigned>(protectionSpace.authenticationScheme()));
         if (!protectionSpace.isProxy())
             add(hasher, protectionSpace.realm());
         return hasher.hash();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to