From 2651971fb32aa59c88dac37feaa8fe6a1343276f Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Mon, 17 Oct 2016 14:15:41 +0200 Subject: s3/vfs: tsmsm: add missing ; Signed-off-by: Ralph Boehme Reviewed-by: David Disseldorp --- source3/modules/vfs_tsmsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/modules/vfs_tsmsm.c') 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); -- cgit v1.2.1