diff options
author | Andreas Schneider <asn@samba.org> | 2013-01-08 14:21:23 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-01-09 09:11:20 +0100 |
commit | 1aa0503401d41fec48d4d4e30d8bbcbd847ff807 (patch) | |
tree | 6bd90a1f53bb28aad3f00a7e99cb6ef8abc1723f /source3 | |
parent | 6039388fc1f3671bb60db06211814f7edfc62285 (diff) | |
download | samba-1aa0503401d41fec48d4d4e30d8bbcbd847ff807.tar.gz samba-1aa0503401d41fec48d4d4e30d8bbcbd847ff807.tar.bz2 samba-1aa0503401d41fec48d4d4e30d8bbcbd847ff807.zip |
Use the new directory_create_or_exist_strict() function.
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_server/rpc_server.c | 2 | ||||
-rw-r--r-- | source3/smbd/server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/rpc_server.c b/source3/rpc_server/rpc_server.c index 689e923804..de54ddc6e2 100644 --- a/source3/rpc_server/rpc_server.c +++ b/source3/rpc_server/rpc_server.c @@ -133,7 +133,7 @@ int create_named_pipe_socket(const char *pipe_name) goto out; } - if (!directory_create_or_exist(np_dir, geteuid(), 0700)) { + if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) { DEBUG(0, ("Failed to create pipe directory %s - %s\n", np_dir, strerror(errno))); goto out; diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 1cd92882a9..00472db539 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1468,7 +1468,7 @@ extern void build_options(bool screen); return -1; } - if (!directory_create_or_exist(np_dir, geteuid(), 0700)) { + if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) { DEBUG(0, ("Failed to create pipe directory %s - %s\n", np_dir, strerror(errno))); return -1; |