summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_create.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-07-01 16:15:52 -0700
committerTim Prouty <tprouty@samba.org>2009-07-06 15:38:41 -0700
commit0f6e10886f3f778fe301ee981873f29d295d39c5 (patch)
treef8c2b4d88d7f20793f2c8444d6ea3fbf102534f3 /source3/smbd/smb2_create.c
parentde3246eae2b1234cc7fcb7d4dd6c6863ab9d31b3 (diff)
downloadsamba-0f6e10886f3f778fe301ee981873f29d295d39c5.tar.gz
samba-0f6e10886f3f778fe301ee981873f29d295d39c5.tar.bz2
samba-0f6e10886f3f778fe301ee981873f29d295d39c5.zip
s3: Change some filename_convert to pass in NULL for char **fname argument
Diffstat (limited to 'source3/smbd/smb2_create.c')
-rw-r--r--source3/smbd/smb2_create.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c
index 2c79077507..a936a0892e 100644
--- a/source3/smbd/smb2_create.c
+++ b/source3/smbd/smb2_create.c
@@ -316,8 +316,6 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
}
info = FILE_WAS_CREATED;
} else {
- char *fname = NULL;
-
/* these are ignored for SMB2 */
in_create_options &= ~(0x10);/* NTCREATEX_OPTIONS_SYNC_ALERT */
in_create_options &= ~(0x20);/* NTCREATEX_OPTIONS_ASYNC_ALERT */
@@ -327,7 +325,7 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
smbreq->flags2 & FLAGS2_DFS_PATHNAMES,
in_name,
&smb_fname,
- &fname);
+ NULL);
if (!NT_STATUS_IS_OK(status)) {
tevent_req_nterror(req, status);
goto out;