mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
fix ownership detection for directories in mingw32
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22594 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e1b9889677
commit
872941036c
2 changed files with 4 additions and 2 deletions
|
@ -11,6 +11,8 @@
|
|||
Basically, remove deprecated mingw32 specific api, and change
|
||||
housekeeper to try to make it as invisible as possible in terms of
|
||||
side effects.
|
||||
* Source/NSFileManager.m: Fix mingw determination of the ownership
|
||||
of a directory.
|
||||
|
||||
2006-03-03 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -2847,7 +2847,7 @@ static NSSet *fileKeys = nil;
|
|||
FILE_SHARE_READ,
|
||||
0,
|
||||
OPEN_EXISTING,
|
||||
FILE_ATTRIBUTE_NORMAL,
|
||||
FILE_FLAG_BACKUP_SEMANTICS,
|
||||
0);
|
||||
|
||||
// Check GetLastError for CreateFile error code.
|
||||
|
@ -2987,7 +2987,7 @@ static NSSet *fileKeys = nil;
|
|||
FILE_SHARE_READ,
|
||||
0,
|
||||
OPEN_EXISTING,
|
||||
FILE_ATTRIBUTE_NORMAL,
|
||||
FILE_FLAG_BACKUP_SEMANTICS,
|
||||
0);
|
||||
|
||||
// Check GetLastError for CreateFile error code.
|
||||
|
|
Loading…
Reference in a new issue