From: Ralph Boehme Date: Mon, 17 Oct 2016 12:15:41 +0000 (+0200) Subject: s3/vfs: tsmsm: add missing ; X-Git-Tag: ph-ms-prot-tests-ok~8534 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=2651971fb32aa59c88dac37feaa8fe6a1343276f;p=slow%2Fsamba.git s3/vfs: tsmsm: add missing ; Signed-off-by: Ralph Boehme Reviewed-by: David Disseldorp --- diff --git a/source3/modules/vfs_tsmsm.c b/source3/modules/vfs_tsmsm.c index aa0ae963ae4..eba19ff71f5 100644 --- a/source3/modules/vfs_tsmsm.c +++ b/source3/modules/vfs_tsmsm.c @@ -521,7 +521,7 @@ static NTSTATUS tsmsm_set_offline(struct vfs_handle_struct *handle, return NT_STATUS_NO_MEMORY; } DEBUG(10, ("tsmsm_set_offline: Running [%s]\n", command)); - result = smbrun(command, NULL, NULL) + result = smbrun(command, NULL, NULL); if(result != 0) { DEBUG(1,("tsmsm_set_offline: Running [%s] returned %d\n", command, result)); TALLOC_FREE(command);