diff options
Diffstat (limited to 'source3/modules/vfs_full_audit.c')
-rw-r--r-- | source3/modules/vfs_full_audit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 23ca1496bf..3328128d86 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -1324,11 +1324,11 @@ static int smb_full_audit_mknod(vfs_handle_struct *handle, } static char *smb_full_audit_realpath(vfs_handle_struct *handle, - const char *path, char *resolved_path) + const char *path) { char *result; - result = SMB_VFS_NEXT_REALPATH(handle, path, resolved_path); + result = SMB_VFS_NEXT_REALPATH(handle, path); do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path); |