summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2013-04-15 11:48:05 +0200
committerJeremy Allison <jra@samba.org>2013-04-17 14:50:03 -0700
commit6624095d6747432e1e19ee54902a804dcb2c0129 (patch)
treee74ddbca4725251c1310b733095b35b6328399bc /source3/torture
parent7d5403037ad6d14c912c19a6970ebea9a43c942b (diff)
downloadsamba-6624095d6747432e1e19ee54902a804dcb2c0129.tar.gz
samba-6624095d6747432e1e19ee54902a804dcb2c0129.tar.bz2
samba-6624095d6747432e1e19ee54902a804dcb2c0129.zip
vfstest: Convert cmd_lstat to synthetic_smb_fname
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/cmd_vfs.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/source3/torture/cmd_vfs.c b/source3/torture/cmd_vfs.c
index f2f1e00668..5568245237 100644
--- a/source3/torture/cmd_vfs.c
+++ b/source3/torture/cmd_vfs.c
@@ -749,17 +749,15 @@ static NTSTATUS cmd_lstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc,
struct smb_filename *smb_fname = NULL;
SMB_STRUCT_STAT st;
time_t tmp_time;
- NTSTATUS status;
if (argc != 2) {
printf("Usage: lstat <path>\n");
return NT_STATUS_OK;
}
- status = create_synthetic_smb_fname_split(mem_ctx, argv[1], NULL,
- &smb_fname);
- if (!NT_STATUS_IS_OK(status)) {
- return status;
+ smb_fname = synthetic_smb_fname_split(mem_ctx, argv[1], NULL);
+ if (smb_fname == NULL) {
+ return NT_STATUS_NO_MEMORY;
}
if (SMB_VFS_LSTAT(vfs->conn, smb_fname) == -1) {