summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2020-10-15 19:49:24 +0200
committerRalph Boehme <slow@samba.org>2020-10-23 07:56:32 +0000
commit3caf53a0546a1e05bd1ce7e07b987585ebe0ad71 (patch)
treef7b1a0ddaf31e8887bb369c7bbf5b8ef2fd6c52f /source3
parent3df5f851c67fcbac01a214ede9bffd3e20231de3 (diff)
downloadsamba-3caf53a0546a1e05bd1ce7e07b987585ebe0ad71.tar.gz
smbd: fix order of smb_fname flags and twrp args in call_trans2findfirst()
Also not creating a BUG for this one as I've not seen any reports from the field that this is causing issues. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/trans2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index f9300efee9a..dcf50375d2c 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -2881,8 +2881,8 @@ close_if_end = %d requires_resume_key = %d backup_priv = %d level = 0x%x, max_da
".",
NULL,
&old_name->st,
- old_name->flags,
- old_name->twrp);
+ old_name->twrp,
+ old_name->flags);
TALLOC_FREE(old_name);
if (smb_dname == NULL) {
reply_nterror(req, NT_STATUS_NO_MEMORY);