VFS: Modify lchown to take a const struct smb_filename * instead of const char *
[bbaumbach/samba-autobuild/.git] / examples / VFS / skel_opaque.c
index 57f5b0921f02f82d3b00cd1242e95da783735327..457881dc8bea429f6f719a3102ec594276c75a8d 100644 (file)
@@ -398,8 +398,10 @@ static int skel_fchown(vfs_handle_struct *handle, files_struct *fsp,
        return -1;
 }
 
-static int skel_lchown(vfs_handle_struct *handle, const char *path,
-                      uid_t uid, gid_t gid)
+static int skel_lchown(vfs_handle_struct *handle,
+                       const struct smb_filename *smb_fname,
+                       uid_t uid,
+                       gid_t gid)
 {
        errno = ENOSYS;
        return -1;