summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2022-09-20 14:31:31 +0200
committerJeremy Allison <jra@samba.org>2022-11-22 18:27:33 +0000
commit18d6334ca4154649c66cb946834dc1b2588902df (patch)
tree4883da87b75741d6a6127736b46716255e1d9b19 /examples
parent0c419b8a204bd21e8991356ac88188c98bcfbb79 (diff)
downloadsamba-18d6334ca4154649c66cb946834dc1b2588902df.tar.gz
libsmb: Pass symlink error up through cli_smb2_create_fnum_recv()
Not passing through the sync wrapper yet. Not needed right now, and it's simple to add if required. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/fuse/clifuse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/fuse/clifuse.c b/examples/fuse/clifuse.c
index 721b282baf0..2d9edad5f47 100644
--- a/examples/fuse/clifuse.c
+++ b/examples/fuse/clifuse.c
@@ -178,7 +178,7 @@ static void cli_ll_create_done(struct tevent_req *req)
uint16_t fnum;
NTSTATUS status;
- status = cli_smb2_create_fnum_recv(req, &fnum, NULL, NULL, NULL);
+ status = cli_smb2_create_fnum_recv(req, &fnum, NULL, NULL, NULL, NULL);
TALLOC_FREE(req);
if (!NT_STATUS_IS_OK(status)) {
fuse_reply_err(state->freq, map_errno_from_nt_status(status));
@@ -875,7 +875,7 @@ static void cli_ll_open_done(struct tevent_req *req)
uint16_t fnum;
NTSTATUS status;
- status = cli_smb2_create_fnum_recv(req, &fnum, NULL, NULL, NULL);
+ status = cli_smb2_create_fnum_recv(req, &fnum, NULL, NULL, NULL, NULL);
TALLOC_FREE(req);
if (!NT_STATUS_IS_OK(status)) {
fuse_reply_err(state->freq, map_errno_from_nt_status(status));