summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-05-21 12:17:33 -0700
committerTim Prouty <tprouty@samba.org>2009-05-21 12:17:33 -0700
commitcfc68fc9d99bf1e334e53b1e9e74d56d678b6795 (patch)
tree886c3d100424e83690abb30acf7f7c7549173b5c
parentc3f6eff4f5711245991237d03b66e1570e6e35a5 (diff)
downloadsamba-cfc68fc9d99bf1e334e53b1e9e74d56d678b6795.tar.gz
samba-cfc68fc9d99bf1e334e53b1e9e74d56d678b6795.tar.bz2
samba-cfc68fc9d99bf1e334e53b1e9e74d56d678b6795.zip
s3 onefs: Fix invalid argument from the unix_convert smb_filename struct patch
-rw-r--r--source3/modules/onefs_open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/onefs_open.c b/source3/modules/onefs_open.c
index 7d4379f1fc..6cfa24f9f6 100644
--- a/source3/modules/onefs_open.c
+++ b/source3/modules/onefs_open.c
@@ -2069,7 +2069,7 @@ NTSTATUS onefs_create_file(vfs_handle_struct *handle,
goto fail;
}
- status = get_full_smb_filename(talloc_tos(), &smb_fname,
+ status = get_full_smb_filename(talloc_tos(), smb_fname,
&converted_fname);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(smb_fname);