vfstest: fix the "-c" multiple-command option
[vlendec/samba-autobuild/.git] / source3 / torture / vfstest.c
index 54365e0350be4a93fe707373b14bbe6e4ac2a999..2cec68711d1636a43a6209e371a16a12d8d29266 100644 (file)
@@ -108,7 +108,12 @@ static char *next_command(TALLOC_CTX *ctx, char **cmdstr)
        if (p)
                *p = '\0';
        command = talloc_strdup(ctx, *cmdstr);
-       *cmdstr = p;
+
+       /* Pass back the remaining cmdstring 
+          (a trailing delimiter ";" does also work),
+          or NULL at last cmdstring.
+       */
+       *cmdstr = p ? p + 1 : p;
 
        return command;
 }