diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-25 22:18:56 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-25 22:18:56 +0000 |
commit | 65b80c29db637fe2269a118e592023c8bde0c4fd (patch) | |
tree | 42f2b6e68014cb11c19b8f75e3801db2b46da466 | |
parent | c63a8a8c0d40028e20e139abe65ae130ad7de28a (diff) | |
download | busybox-w32-65b80c29db637fe2269a118e592023c8bde0c4fd.tar.gz busybox-w32-65b80c29db637fe2269a118e592023c8bde0c4fd.tar.bz2 busybox-w32-65b80c29db637fe2269a118e592023c8bde0c4fd.zip |
fix 'grep -C' which requires an argument
git-svn-id: svn://busybox.net/trunk/busybox@16220 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | findutils/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; | |||
46 | #define GREP_OPT_L (1<<12) | 46 | #define GREP_OPT_L (1<<12) |
47 | #define PRINT_FILES_WITHOUT_MATCHES ((opt & GREP_OPT_L) != 0) | 47 | #define PRINT_FILES_WITHOUT_MATCHES ((opt & GREP_OPT_L) != 0) |
48 | #if ENABLE_FEATURE_GREP_CONTEXT | 48 | #if ENABLE_FEATURE_GREP_CONTEXT |
49 | #define GREP_OPT_CONTEXT "A:B:C" | 49 | #define GREP_OPT_CONTEXT "A:B:C:" |
50 | #define GREP_OPT_A (1<<13) | 50 | #define GREP_OPT_A (1<<13) |
51 | #define GREP_OPT_B (1<<14) | 51 | #define GREP_OPT_B (1<<14) |
52 | #define GREP_OPT_C (1<<15) | 52 | #define GREP_OPT_C (1<<15) |