mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +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
2f99ae8e99
commit
8ce2eb6567
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>
|
2012-03-05 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||||
|
|
||||||
* Source/NSFileManager.m:
|
* Source/NSFileManager.m:
|
||||||
|
|
|
@ -690,7 +690,8 @@ static NSStringEncoding defaultEncoding;
|
||||||
{
|
{
|
||||||
ok = NO;
|
ok = NO;
|
||||||
}
|
}
|
||||||
else if ([t isEqual: NSFileTypeDirectory])
|
else if ([t isEqual: NSFileTypeDirectory]
|
||||||
|
|| [t isEqual: NSFileTypeRegular])
|
||||||
{
|
{
|
||||||
ok = [self contentsEqualAtPath: p1 andPath: p2];
|
ok = [self contentsEqualAtPath: p1 andPath: p2];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue