Fixed a syntax error in NSFileManager.m.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36748 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ivan Vučica 2013-06-23 22:19:58 +00:00
parent a0875b7adb
commit 8384be10f3
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2013-06-23 Ivan Vucica <ivan@vucica.net>
* Source/NSFileManager.m: Fixed syntax error.
2013-06-23 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSFileManager.m: Don't attempt to set ownership of copied

View file

@ -1047,8 +1047,8 @@ static NSStringEncoding defaultEncoding;
attrs = AUTORELEASE([attrs mutableCopy]);
[(NSMutableDictionary*)attrs removeObjectForKey: NSFileOwnerAccountID];
[(NSMutableDictionary*)attrs removeObjectForKey: NSFileGroupOwnerAccountID];
(NSMutableDictionary*)mattrs removeObjectForKey: NSFileGroupOwnerAccountName];
(NSMutableDictionary*)mattrs setObject: NSUserName()
[(NSMutableDictionary*)attrs removeObjectForKey: NSFileGroupOwnerAccountName];
[(NSMutableDictionary*)attrs setObject: NSUserName()
forKey: NSFileOwnerAccountName];
if ([fileType isEqualToString: NSFileTypeDirectory] == YES)