s3/vfs: tsmsm: add missing ;
authorRalph Boehme <slow@samba.org>
Mon, 17 Oct 2016 12:15:41 +0000 (14:15 +0200)
committerDavid Disseldorp <ddiss@samba.org>
Mon, 17 Oct 2016 15:44:09 +0000 (17:44 +0200)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
source3/modules/vfs_tsmsm.c

index aa0ae963ae4caac1bf66c8cf66fe88779c8841db..eba19ff71f5ec2b6beebf9591959cdedaa7c89e3 100644 (file)
@@ -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);