Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d2e216f4
Commit
d2e216f4
authored
Nov 08, 2013
by
Erich E. Hoover
Committed by
Alexandre Julliard
Nov 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Create directories with the specified security attributes.
parent
95c414fe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
security.c
dlls/advapi32/tests/security.c
+2
-3
fd.c
server/fd.c
+1
-1
file.c
server/file.c
+2
-0
No files found.
dlls/advapi32/tests/security.c
View file @
d2e216f4
...
...
@@ -3081,9 +3081,8 @@ static void test_CreateDirectoryA(void)
bret
=
pGetAclInformation
(
pDacl
,
&
acl_size
,
sizeof
(
acl_size
),
AclSizeInformation
);
ok
(
bret
,
"GetAclInformation failed
\n
"
);
todo_wine
ok
(
acl_size
.
AceCount
==
2
,
"GetAclInformation returned unexpected entry count (%d != 2).
\n
"
,
acl_size
.
AceCount
);
ok
(
acl_size
.
AceCount
==
2
,
"GetAclInformation returned unexpected entry count (%d != 2).
\n
"
,
acl_size
.
AceCount
);
if
(
acl_size
.
AceCount
>
0
)
{
bret
=
pGetAce
(
pDacl
,
0
,
(
VOID
**
)
&
ace
);
...
...
server/fd.c
View file @
d2e216f4
...
...
@@ -1768,7 +1768,7 @@ struct fd *open_fd( struct fd *root, const char *name, int flags, mode_t *mode,
/* create the directory if needed */
if
((
options
&
FILE_DIRECTORY_FILE
)
&&
(
flags
&
O_CREAT
))
{
if
(
mkdir
(
name
,
0777
)
==
-
1
)
if
(
mkdir
(
name
,
*
mode
)
==
-
1
)
{
if
(
errno
!=
EEXIST
||
(
flags
&
O_EXCL
))
{
...
...
server/file.c
View file @
d2e216f4
...
...
@@ -218,6 +218,8 @@ static struct object *create_file( struct fd *root, const char *nameptr, data_si
owner
=
token_get_user
(
current
->
process
->
token
);
mode
=
sd_to_mode
(
sd
,
owner
);
}
else
if
(
options
&
FILE_DIRECTORY_FILE
)
mode
=
(
attrs
&
FILE_ATTRIBUTE_READONLY
)
?
0555
:
0777
;
else
mode
=
(
attrs
&
FILE_ATTRIBUTE_READONLY
)
?
0444
:
0666
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment