diff options
author | Ralph Boehme <slow@samba.org> | 2020-04-30 16:40:28 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2020-05-05 19:18:41 +0000 |
commit | f9c670608090fc22ccb48a29eed16bc44c9e75fd (patch) | |
tree | 9b9138f0ba0bf878ffe624ba4100094bdd8e84d0 /source3/smbd/filename.c | |
parent | 0c61b2658b003894f69d69198edc512943943157 (diff) | |
download | samba-f9c670608090fc22ccb48a29eed16bc44c9e75fd.tar.gz |
smbd: convert SMB_VFS_GET_REAL_FILENAME() arg path to be a struct smb_filename
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd/filename.c')
-rw-r--r-- | source3/smbd/filename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c index 976aa9c4cd9..0a3d8f39007 100644 --- a/source3/smbd/filename.c +++ b/source3/smbd/filename.c @@ -1687,7 +1687,7 @@ int get_real_filename(connection_struct *conn, /* Try the vfs first to take advantage of case-insensitive stat. */ ret = SMB_VFS_GET_REAL_FILENAME(conn, - path->base_name, + path, name, mem_ctx, found_name); |