diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/open.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 2587d0966f..ab83a043fd 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3282,9 +3282,9 @@ void msg_file_was_renamed(struct messaging_context *msg, stream_name = NULL; } - status = create_synthetic_smb_fname(talloc_tos(), base_name, - stream_name, NULL, &smb_fname); - if (!NT_STATUS_IS_OK(status)) { + smb_fname = synthetic_smb_fname(talloc_tos(), base_name, + stream_name, NULL); + if (smb_fname == NULL) { return; } |