[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:38:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0b7e843b7228ee5ae05b71546fbce5a8adaf9bed
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Apr 24 15:00:31 2003 +0000

            Reviewed by Ken and Darin.
    
    	Fixed an authentication crashing bug that crept into the last few
    	changes, plus a typo.
    
            * Panels.subproj/WebAuthenticationPanel.m:
            (-[WebAuthenticationPanel setUpForChallenge:]): Remove extra space.
            (-[WebAuthenticationPanel runAsSheetOnWindow:withChallenge:]): Store
    	the challenge properly.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4165 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7f27681..e10b793 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2003-04-24  Maciej Stachowiak  <mjs at apple.com> (checked in by Darin)
+
+        Reviewed by Ken and Darin.
+
+	Fixed an authentication crashing bug that crept into the last few
+	changes, plus a typo.
+	
+        * Panels.subproj/WebAuthenticationPanel.m:
+        (-[WebAuthenticationPanel setUpForChallenge:]): Remove extra space.
+        (-[WebAuthenticationPanel runAsSheetOnWindow:withChallenge:]): Store
+	the challenge properly.
+
 2003-04-22  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/WebKit/Panels.subproj/WebAuthenticationPanel.m b/WebKit/Panels.subproj/WebAuthenticationPanel.m
index 1b5f8b7..c8d1735 100644
--- a/WebKit/Panels.subproj/WebAuthenticationPanel.m
+++ b/WebKit/Panels.subproj/WebAuthenticationPanel.m
@@ -92,7 +92,7 @@
 {
     [self loadNib];
 
-    NSURLProtectionSpace *space = [chall  protectionSpace];
+    NSURLProtectionSpace *space = [chall protectionSpace];
 
     NSString *host;
     if ([space port] == 0) {
@@ -169,7 +169,7 @@
     [self setUpForChallenge:chall];
 
     usingSheet = TRUE;
-    chall = [chall retain];
+    challenge = [chall retain];
     
     [[NSApplication sharedApplication] beginSheet:panel modalForWindow:window modalDelegate:self didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:) contextInfo:NULL];
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list