<rdar://problem/
5012636> - WebURLProtectionSpace::realm returns the hostname rather than the authentication realm
* platform/network/ProtectionSpace.cpp:
(WebCore::ProtectionSpace::ProtectionSpace): Assign the realm to m_realm, instead of the host
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28657
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-12-12 Brady Eidson <beidson@apple.com>
+
+ Reviewed by Steve Falkenburg
+
+ <rdar://problem/5012636> - WebURLProtectionSpace::realm returns the hostname rather than the authentication realm
+
+ * platform/network/ProtectionSpace.cpp:
+ (WebCore::ProtectionSpace::ProtectionSpace): Assign the realm to m_realm, instead of the host
+
2007-12-12 Alp Toker <alp@atoker.com>
Reviewed by Maciej.
: m_host(host.length() ? host : "")
, m_port(port)
, m_serverType(serverType)
- , m_realm(realm.length() ? host : "")
+ , m_realm(realm.length() ? realm : "")
, m_authenticationScheme(authenticationScheme)
{
}