summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_default.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-12-24 13:51:47 +0100
committerVolker Lendecke <vl@samba.org>2008-12-31 19:33:25 +0100
commit972295f80a96e3928be426edf607cbdd3990a2d9 (patch)
tree0142539debab9528d7b0d8ab82cb62b2e4de4183 /source3/modules/vfs_default.c
parent9b79181f1508b8a126a48511232205abe456e923 (diff)
downloadsamba-972295f80a96e3928be426edf607cbdd3990a2d9.tar.gz
samba-972295f80a96e3928be426edf607cbdd3990a2d9.tar.bz2
samba-972295f80a96e3928be426edf607cbdd3990a2d9.zip
Rename parent_dirname_talloc() to parent_dirname()
Diffstat (limited to 'source3/modules/vfs_default.c')
-rw-r--r--source3/modules/vfs_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 3171d3c5ca..61e1deb81e 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -155,7 +155,7 @@ static int vfswrap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mo
START_PROFILE(syscall_mkdir);
if (lp_inherit_acls(SNUM(handle->conn))
- && parent_dirname_talloc(talloc_tos(), path, &parent, NULL)
+ && parent_dirname(talloc_tos(), path, &parent, NULL)
&& (has_dacl = directory_has_default_acl(handle->conn, parent)))
mode = 0777;