summaryrefslogtreecommitdiff
path: root/source3/smbd/open.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-05-02 12:54:53 -0700
committerJeremy Allison <jra@samba.org>2008-05-02 12:54:53 -0700
commit85dc0ad7beb50dbab6d98a22b114f20537425268 (patch)
tree9e6eea2de72fd3774a67c01a04dde8519b8e9e45 /source3/smbd/open.c
parent96e969c9eb60cf1d96ba9aeeb4c991d2acf4c095 (diff)
downloadsamba-85dc0ad7beb50dbab6d98a22b114f20537425268.tar.gz
samba-85dc0ad7beb50dbab6d98a22b114f20537425268.tar.bz2
samba-85dc0ad7beb50dbab6d98a22b114f20537425268.zip
Rename inherit_access_acl() -> inherit_access_posix_acl() to make use clear.
Jeremy. (This used to be commit b739c7f1cdb2b19a380b06681b00dcf490d788a9)
Diffstat (limited to 'source3/smbd/open.c')
-rw-r--r--source3/smbd/open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 0d1dd31cd6..dd518b90de 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -323,7 +323,7 @@ static NTSTATUS open_file(files_struct *fsp,
/* Inherit the ACL if required */
if (lp_inherit_perms(SNUM(conn))) {
- inherit_access_acl(conn, parent_dir, path,
+ inherit_access_posix_acl(conn, parent_dir, path,
unx_mode);
}
@@ -2058,7 +2058,7 @@ static NTSTATUS mkdir_internal(connection_struct *conn,
}
if (lp_inherit_perms(SNUM(conn))) {
- inherit_access_acl(conn, parent_dir, name, mode);
+ inherit_access_posix_acl(conn, parent_dir, name, mode);
}
if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {