summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2006-09-25 22:27:20 +0000
committerEric Andersen <andersen@codepoet.org>2006-09-25 22:27:20 +0000
commit2f8880d2333c0ff9229a2b386eb652952010d7e6 (patch)
tree97487b9a0660c6d716d57a12ed90b4b28d4dbacd
parentd905e44d477a0b5b2763836053db8764764a8b34 (diff)
downloadbusybox-1_00_stable.tar.gz
fix 'grep -C' which requires an argument1_00_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 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)