summaryrefslogtreecommitdiffstats
path: root/commands/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/exec.c')
-rw-r--r--commands/exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/exec.c b/commands/exec.c
index a25e8cf864..e2509ff475 100644
--- a/commands/exec.c
+++ b/commands/exec.c
@@ -38,11 +38,11 @@ static int do_exec(int argc, char *argv[])
return COMMAND_ERROR_USAGE;
for (i=1; i<argc; ++i) {
- script = read_file(argv[i]);
+ script = read_file(argv[i], NULL);
if (!script)
return 1;
- if (run_command (script, flag) == -1)
+ if (run_command (script, 0) == -1)
goto out;
free(script);
}