From 43d59d5cc46b43cbccfe8ec24fb7ca433e80f22b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 2 Feb 2014 14:59:30 +0100 Subject: loadparm: rename lp[cfg]_dir_mask to lp[cfg]_directory_mask for consistency with docs Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett Reviewed-by: Garming Sam --- source3/modules/vfs_default.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 2d49a943e1..09d9a6641f 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -437,7 +437,7 @@ static int vfswrap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mod if (lp_inherit_acls(SNUM(handle->conn)) && parent_dirname(talloc_tos(), path, &parent, NULL) && (has_dacl = directory_has_default_acl(handle->conn, parent))) - mode = (0777 & lp_dir_mask(SNUM(handle->conn))); + mode = (0777 & lp_directory_mask(SNUM(handle->conn))); TALLOC_FREE(parent); -- cgit