mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
fixup credential equality check
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37430 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b345f55779
commit
805cf33e93
2 changed files with 10 additions and 2 deletions
|
@ -132,7 +132,9 @@ typedef struct {
|
|||
{
|
||||
return NO;
|
||||
}
|
||||
return [[(NSURLCredential*)other user] isEqualToString: this->user];
|
||||
return [[(NSURLCredential*)other user] isEqualToString: this->user]
|
||||
&& [[(NSURLCredential*)other password] isEqualToString: this->password]
|
||||
&& [(NSURLCredential*)other persistence] == this->persistence;
|
||||
}
|
||||
|
||||
- (NSString *) password
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue