diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-02 17:51:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-02 17:51:39 +0000 |
commit | 9c8ffa02f4ecd6029233de9d5cdc695fc82fc6df (patch) | |
tree | efb6f856f25a646c4fef50123de1deb559d83a9a /yes.c | |
parent | 3199bda52e85225c22c617617f43591d6fd23eea (diff) |
Pavel fixed a segfault in yes.
-Erik
Diffstat (limited to 'yes.c')
-rw-r--r-- | yes.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ extern int yes_main(int argc, char **argv) { int i; - if (argc >=1 && *argv[1]=='-') { + if (argc >= 2 && *argv[1] == '-') { usage("yes [OPTION]... [STRING]...\n" #ifndef BB_FEATURE_TRIVIAL_HELP "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n" |