mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
a0875b7adb
commit
8384be10f3
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue