From 8b19b59288c1fca6927a519e6db3f6df09cd3c80 Mon Sep 17 00:00:00 2001 From: markw Date: Wed, 28 Jun 2000 22:59:30 +0000 Subject: Fixed comment. git-svn-id: svn://busybox.net/trunk/busybox@724 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- findutils/grep.c | 4 ++-- grep.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/findutils/grep.c b/findutils/grep.c index ac55f19d1..a2e2ff813 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -165,8 +165,8 @@ extern int grep_main(int argc, char **argv) if ((argc-1) - (optind+1) > 0) print_filename++; - /* If no files were specified, take input from stdin. Otherwise, we grep - * through all the files specified. */ + /* If no files were specified, or '-' was specified, take input from + * stdin. Otherwise, we grep through all the files specified. */ if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) { grep_file(stdin); } else { diff --git a/grep.c b/grep.c index ac55f19d1..a2e2ff813 100644 --- a/grep.c +++ b/grep.c @@ -165,8 +165,8 @@ extern int grep_main(int argc, char **argv) if ((argc-1) - (optind+1) > 0) print_filename++; - /* If no files were specified, take input from stdin. Otherwise, we grep - * through all the files specified. */ + /* If no files were specified, or '-' was specified, take input from + * stdin. Otherwise, we grep through all the files specified. */ if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) { grep_file(stdin); } else { -- cgit v1.2.3-55-g6feb