summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2006-09-25 22:25:23 +0000
committerEric Andersen <andersen@codepoet.org>2006-09-25 22:25:23 +0000
commitbdea7807b1f045a230a2efab8d85fa21a9aa3e48 (patch)
tree0bae0c4b290b2f563a7a73848f30752bf332dc38
parentbbc81fe9f490b0bebd84c90a677ecfffee393824 (diff)
downloadbusybox-1_1_stable.tar.gz
Fix 'grep -C' which requires and argument1_1_stable
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index e5b5e3242..f3b2486c6 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -51,7 +51,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)