summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_tsmsm.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2016-10-17 14:15:41 +0200
committerDavid Disseldorp <ddiss@samba.org>2016-10-17 17:44:09 +0200
commit2651971fb32aa59c88dac37feaa8fe6a1343276f (patch)
treecb4f25b46c95de6af352bd571c458eb49bbdb932 /source3/modules/vfs_tsmsm.c
parent1f0dd8f698e7bd74846d3b4c36a5c3dac2098051 (diff)
downloadsamba-2651971fb32aa59c88dac37feaa8fe6a1343276f.tar.gz
s3/vfs: tsmsm: add missing ;
Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3/modules/vfs_tsmsm.c')
-rw-r--r--source3/modules/vfs_tsmsm.c2
1 files changed, 1 insertions, 1 deletions
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);