mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix bug#38450
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36277 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e81f5ee403
commit
4eb74f9607
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-03-05 Larry Campbell <lcampbel@akamai.com>
|
||||
|
||||
* Source/NSFileManager.m: Fix for ([-contentsEqualAtPath:andPath:])
|
||||
compare contents of regular files in subdirectories.
|
||||
|
||||
2012-03-05 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
|
||||
* Source/NSFileManager.m:
|
||||
|
|
|
@ -690,7 +690,8 @@ static NSStringEncoding defaultEncoding;
|
|||
{
|
||||
ok = NO;
|
||||
}
|
||||
else if ([t isEqual: NSFileTypeDirectory])
|
||||
else if ([t isEqual: NSFileTypeDirectory]
|
||||
|| [t isEqual: NSFileTypeRegular])
|
||||
{
|
||||
ok = [self contentsEqualAtPath: p1 andPath: p2];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue