aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-07-19 23:11:45 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-07-19 23:11:45 +0200
commit997538ab586e9b061b33c24f2ddced18a0379826 (patch)
tree783aa6b3560e9d60e50fa0a250a9fa737cff4449 /util-linux
parentd6513cff17245c3922452ee8aa99151c8533bace (diff)
downloadbusybox-w32-997538ab586e9b061b33c24f2ddced18a0379826.tar.gz
busybox-w32-997538ab586e9b061b33c24f2ddced18a0379826.tar.bz2
busybox-w32-997538ab586e9b061b33c24f2ddced18a0379826.zip
scriptreplay: show help text if run with no arguments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/scriptreplay.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/scriptreplay.c b/util-linux/scriptreplay.c
index 6474d38e8..d7e193303 100644
--- a/util-linux/scriptreplay.c
+++ b/util-linux/scriptreplay.c
@@ -18,6 +18,9 @@ int scriptreplay_main(int argc UNUSED_PARAM, char **argv)
18 unsigned long count; 18 unsigned long count;
19 FILE *tfp; 19 FILE *tfp;
20 20
21 if (!argv[1])
22 bb_show_usage();
23
21 if (argv[2]) { 24 if (argv[2]) {
22 script = argv[2]; 25 script = argv[2];
23 if (argv[3]) 26 if (argv[3])