Changeset 275086 in webkit
- Timestamp:
- Mar 26, 2021, 2:42:04 AM (5 years ago)
- Location:
- releases/WebKitGTK/webkit-2.32/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/network/soup/AuthenticationChallengeSoup.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.32/Source/WebCore/ChangeLog
r275083 r275086 1 2021-03-26 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 REGRESSION(r272301): [SOUP] default port attribute when persisting credential information with libsecret 4 https://bugs.webkit.org/show_bug.cgi?id=223782 5 6 Reviewed by Adrian Perez de Castro. 7 8 Use the default port instead of 0 when the URL omits the port. 9 10 * platform/network/soup/AuthenticationChallengeSoup.cpp: 11 (WebCore::protectionSpaceFromSoupAuthAndURL): 12 1 13 2021-03-26 Alejandro G. Castro <alex@igalia.com> 2 14 -
releases/WebKitGTK/webkit-2.32/Source/WebCore/platform/network/soup/AuthenticationChallengeSoup.cpp
r273379 r275086 65 65 auto host = url.host(); 66 66 auto port = url.port(); 67 if (!port) 68 port = defaultPortForProtocol(url.protocol()); 67 69 #else 68 70 URL authURL({ }, makeString("http://", soup_auth_get_authority(soupAuth)));
Note:
See TracChangeset
for help on using the changeset viewer.