From 65b80c29db637fe2269a118e592023c8bde0c4fd Mon Sep 17 00:00:00 2001 From: andersen Date: Mon, 25 Sep 2006 22:18:56 +0000 Subject: fix 'grep -C' which requires an argument git-svn-id: svn://busybox.net/trunk/busybox@16220 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- findutils/grep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/findutils/grep.c b/findutils/grep.c index 0e0d03f9e..ebd9596e0 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -46,7 +46,7 @@ static invert_search_t invert_search; #define GREP_OPT_L (1<<12) #define PRINT_FILES_WITHOUT_MATCHES ((opt & GREP_OPT_L) != 0) #if ENABLE_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) -- cgit v1.2.3-55-g6feb