X-Git-Url: http://git.samba.org/samba.git/?a=blobdiff_plain;f=source3%2Fmodules%2Fvfs_fake_acls.c;h=cb907d0ca9875fabbb8c450c4622e2a4159b0385;hb=d1f26bc43228843f57b1ee23c1690306d6440865;hp=3887e86746e252742ff3dc538fa477f16f3e0f88;hpb=9678611d82d518bb16402a827cbf13769a5f0333;p=kai%2Fsamba-autobuild%2F.git diff --git a/source3/modules/vfs_fake_acls.c b/source3/modules/vfs_fake_acls.c index 3887e86746e..cb907d0ca98 100644 --- a/source3/modules/vfs_fake_acls.c +++ b/source3/modules/vfs_fake_acls.c @@ -393,20 +393,33 @@ static int fake_acls_sys_acl_delete_def_file(vfs_handle_struct *handle, const ch return ret; } -static int fake_acls_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid) +static int fake_acls_chown(vfs_handle_struct *handle, + const struct smb_filename *smb_fname, + uid_t uid, + gid_t gid) { int ret; uint8_t id_buf[4]; if (uid != -1) { SIVAL(id_buf, 0, uid); - ret = SMB_VFS_NEXT_SETXATTR(handle, path, FAKE_UID, id_buf, sizeof(id_buf), 0); + ret = SMB_VFS_NEXT_SETXATTR(handle, + smb_fname->base_name, + FAKE_UID, + id_buf, + sizeof(id_buf), + 0); if (ret != 0) { return ret; } } if (gid != -1) { SIVAL(id_buf, 0, gid); - ret = SMB_VFS_NEXT_SETXATTR(handle, path, FAKE_GID, id_buf, sizeof(id_buf), 0); + ret = SMB_VFS_NEXT_SETXATTR(handle, + smb_fname->base_name, + FAKE_GID, + id_buf, + sizeof(id_buf), + 0); if (ret != 0) { return ret; }