From 2f8880d2333c0ff9229a2b386eb652952010d7e6 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 25 Sep 2006 22:27:20 +0000 Subject: [PATCH] fix 'grep -C' which requires an argument --- findutils/grep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/findutils/grep.c b/findutils/grep.c index a8fd2d41a..af613d6df 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -58,7 +58,7 @@ static char fgrep_flag; #define GREP_OPT_L (1<<12) static char print_files_without_matches; #ifdef CONFIG_FEATURE_GREP_CONTEXT -#define GREP_OPT_CONTEXT "A:B:C" +#define GREP_OPT_CONTEXT "A:B:C:" #define GREP_OPT_A (1<<13) #define GREP_OPT_B (1<<14) #define GREP_OPT_C (1<<15) -- GitLab