diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c index 02ec0ea0e..2560d6e97 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -3918,6 +3918,7 @@ int hush_main(int argc, char **argv) | |||
3918 | global_argv = argv + optind; | 3918 | global_argv = argv + optind; |
3919 | global_argc = argc - optind; | 3919 | global_argc = argc - optind; |
3920 | input = xfopen(argv[optind], "r"); | 3920 | input = xfopen(argv[optind], "r"); |
3921 | fcntl(fileno(input), F_SETFD, FD_CLOEXEC); | ||
3921 | opt = parse_and_run_file(input); | 3922 | opt = parse_and_run_file(input); |
3922 | } | 3923 | } |
3923 | 3924 | ||