diff options
author | Mark Whitley <markw@lineo.com> | 2000-07-12 23:35:21 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-07-12 23:35:21 +0000 |
commit | c41e8c840fd6faf802628036c7e5b2683d623c5d (patch) | |
tree | c4a47f2e1f1af68d3019f598bada0268f872c1b9 /findutils | |
parent | 6f96e674b9176cafcc25de2a1d79d6f6d7f0e908 (diff) | |
download | busybox-c41e8c840fd6faf802628036c7e5b2683d623c5d.tar.gz |
Changed bb_regcomp to xregcomp and #if 0'ed out destroy_cmd_strs in sed.c
(maybe I'll remove it later).
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index dec365f05..77b510002 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -146,8 +146,7 @@ extern int grep_main(int argc, char **argv) reflags = REG_NOSUB | REG_NEWLINE; if (ignore_case) reflags |= REG_ICASE; - if (bb_regcomp(®ex, argv[optind], reflags) != 0) - exit(1); + xregcomp(®ex, argv[optind], reflags); /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If * there is more than one file to grep, we will print the filenames */ |