From: Eric Andersen Date: Mon, 25 Sep 2006 22:27:20 +0000 (-0000) Subject: fix 'grep -C' which requires an argument X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2f8880d2333c0ff9229a2b386eb652952010d7e6;p=oweals%2Fbusybox.git fix 'grep -C' which requires an argument --- 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)