diff options
author | Andreas Schneider <asn@samba.org> | 2017-03-21 15:32:37 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2017-06-02 10:01:16 +0200 |
commit | b9258183a5fd5b7235a42a719f4f033c5b135b55 (patch) | |
tree | 8b8da1c3811dd5ac9a3e44e9fcf25743f4e55f1d /source3/modules | |
parent | 4fc1e91306de7ec0c07f274884838a29edf51a38 (diff) | |
download | samba-b9258183a5fd5b7235a42a719f4f033c5b135b55.tar.gz |
s3:smbd: Pass down remote and local address to get_referred_path()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12687
Pair-Programmed-With: Ralph Boehme <slow@samba.org>
Signed-off-by: Andreas Schneider <asn@samba.org>
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit cbf67123e037207662ec0d4e53c55990e21b157e)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index e0b6125f7d8..dcae861103d 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -216,6 +216,8 @@ static NTSTATUS vfswrap_get_dfs_referrals(struct vfs_handle_struct *handle, /* The following call can change cwd. */ status = get_referred_path(r, pathnamep, + handle->conn->sconn->remote_address, + handle->conn->sconn->local_address, !handle->conn->sconn->using_smb2, junction, &consumedcnt, &self_referral); if (!NT_STATUS_IS_OK(status)) { |