Title: [91885] trunk/Source/WebCore
Revision
91885
Author
[email protected]
Date
2011-07-27 17:13:12 -0700 (Wed, 27 Jul 2011)

Log Message

Incorrect arguments passed to LOG statement
https://bugs.webkit.org/show_bug.cgi?id=65293

Reviewed by Oliver Hunt.

* platform/network/mac/ResourceHandleMac.mm:
(-[WebCoreResourceHandleAsDelegate connection:canAuthenticateAgainstProtectionSpace:]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (91884 => 91885)


--- trunk/Source/WebCore/ChangeLog	2011-07-27 23:52:44 UTC (rev 91884)
+++ trunk/Source/WebCore/ChangeLog	2011-07-28 00:13:12 UTC (rev 91885)
@@ -1,3 +1,13 @@
+2011-07-27  Pratik Solanki  <[email protected]>
+
+        Incorrect arguments passed to LOG statement
+        https://bugs.webkit.org/show_bug.cgi?id=65293
+
+        Reviewed by Oliver Hunt.
+
+        * platform/network/mac/ResourceHandleMac.mm:
+        (-[WebCoreResourceHandleAsDelegate connection:canAuthenticateAgainstProtectionSpace:]):
+
 2011-07-27  Levi Weintraub  <[email protected]>
 
         Switch transform operations to FloatSize

Modified: trunk/Source/WebCore/platform/network/mac/ResourceHandleMac.mm (91884 => 91885)


--- trunk/Source/WebCore/platform/network/mac/ResourceHandleMac.mm	2011-07-27 23:52:44 UTC (rev 91884)
+++ trunk/Source/WebCore/platform/network/mac/ResourceHandleMac.mm	2011-07-28 00:13:12 UTC (rev 91885)
@@ -771,7 +771,7 @@
     UNUSED_PARAM(connection);
 #endif
 
-    LOG(Network, "Handle %p delegate connection:%p canAuthenticateAgainstProtectionSpace:%p", m_handle, connection);
+    LOG(Network, "Handle %p delegate connection:%p canAuthenticateAgainstProtectionSpace:%p", m_handle, connection, protectionSpace);
 
     if (!m_handle)
         return NO;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to