From 83f8003fc24eebeb6d17732ca6ddfa49f9057ed4 Mon Sep 17 00:00:00 2001 From: rfm Date: Mon, 19 Jun 2006 15:13:08 +0000 Subject: [PATCH] Fix error in equality test git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23087 72102866-910b-0410-8b05-ffd578937521 --- Source/NSURLProtectionSpace.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSURLProtectionSpace.m b/Source/NSURLProtectionSpace.m index e739a400a..cf321c49d 100644 --- a/Source/NSURLProtectionSpace.m +++ b/Source/NSURLProtectionSpace.m @@ -162,7 +162,7 @@ authenticationMethod: (NSString *)authenticationMethod - (unsigned) isEqual: (id)other { - if ([other isKindOfClass: [NSURLProtocol class]] == NO) + if ([other isKindOfClass: [NSURLProtectionSpace class]] == NO) { return NO; }