diff options
Diffstat (limited to 'coreutils/seq.c')
-rw-r--r-- | coreutils/seq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/seq.c b/coreutils/seq.c index ed4946b05..d5c6451cd 100644 --- a/coreutils/seq.c +++ b/coreutils/seq.c | |||
@@ -12,7 +12,8 @@ | |||
12 | //config: help | 12 | //config: help |
13 | //config: print a sequence of numbers | 13 | //config: print a sequence of numbers |
14 | 14 | ||
15 | //applet:IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq)) | 15 | //applet:IF_SEQ(APPLET_NOEXEC(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq)) |
16 | /* was NOFORK, but then "seq 1 999999999" can't be ^C'ed if run by hush */ | ||
16 | 17 | ||
17 | //kbuild:lib-$(CONFIG_SEQ) += seq.o | 18 | //kbuild:lib-$(CONFIG_SEQ) += seq.o |
18 | 19 | ||
@@ -26,7 +27,7 @@ | |||
26 | 27 | ||
27 | #include "libbb.h" | 28 | #include "libbb.h" |
28 | 29 | ||
29 | /* This is a NOFORK applet. Be very careful! */ | 30 | /* This is a NOEXEC applet. Be very careful! */ |
30 | 31 | ||
31 | int seq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 32 | int seq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
32 | int seq_main(int argc, char **argv) | 33 | int seq_main(int argc, char **argv) |