| Commit message (Expand) | Author | Age | Files | Lines |
* | Change line counter from int to unsigned long long to reduce overflow. |  martijn | 2020-07-23 | 1 | -6/+10 |
* | With -R and an implicit ".", don't prepend file paths with "./" |  jca | 2019-12-03 | 1 | -2/+12 |
* | two compat features to allow the zstdgrep script to work. |  tedu | 2019-10-07 | 1 | -1/+3 |
* | when combining -o and -b, print the byte offset of the pattern, not line. |  tedu | 2019-07-17 | 1 | -2/+3 |
* | rework grep_open to be more careful about directories. |  tedu | 2019-01-23 | 1 | -3/+6 |
* | Add support for the non-standard grep -m extension. |  pirofti | 2017-12-09 | 1 | -1/+11 |
* | initialize regmatch_t always, fixes grep -o "" |  tedu | 2017-04-03 | 1 | -2/+2 |
* | when using -o, we may restart a match in the middle of the line. |  tedu | 2016-08-25 | 1 | -5/+14 |
* | Reverse search optimization makes no sense (and doesn't work) if |  otto | 2016-04-04 | 1 | -2/+2 |
* | cast toupper's argument to unsigned char |  mmcc | 2015-12-22 | 1 | -2/+2 |
* | The loop index in grep_cmp() should be size_t to match the type of |  millert | 2015-12-22 | 1 | -11/+11 |
* | Use long long rather than off_t for line_no to ensure that it's always |  mmcc | 2015-12-14 | 1 | -2/+2 |
* | Represent line numbers with off_t rather than int. This prevents |  mmcc | 2015-12-07 | 1 | -2/+2 |
* | Put fts_close() where missing. |  uebayasi | 2015-06-25 | 1 | -2/+2 |
* | use reallocarray() |  deraadt | 2014-12-01 | 1 | -1/+9 |
* | Use errc/warnc to simplify code. |  guenther | 2014-05-20 | 1 | -2/+2 |
* | unsigned char casts for ctype |  deraadt | 2013-11-26 | 1 | -3/+3 |
* | blacklist a select few characters instead of a limited whitelist for |  tedu | 2013-05-04 | 1 | -11/+21 |
* | Fix exit status when there is an error reading a file. |  millert | 2012-12-29 | 1 | -2/+5 |
* | Don't print zero length matches in -o mode. Found by otto@ who |  millert | 2012-12-12 | 1 | -2/+2 |
* | use proper eol offset for -o matching; spotted by ajacoutot@; ok millert@ |  otto | 2012-12-11 | 1 | -2/+2 |
* | Fix an integer overflow for very long lines by replacing the datatype of 2 offsets from int to regoff_t. |  aschrijver | 2011-07-17 | 1 | -3/+9 |
* | the matchall magic shortcut requires we set c=1 to print now |  tedu | 2011-07-11 | 1 | -1/+2 |
* | add support for -o to only print the match. |  tedu | 2011-07-08 | 1 | -19/+37 |
* | Remove the "fast" grep code if SMALL. This has the side effect of breaking |  tedu | 2010-07-02 | 1 | -1/+15 |
* | prevent out-of-bounds access with empty pattern (fixes "grep -x ''") |  eric | 2010-04-25 | 1 | -2/+2 |
* | remove some non-POSIX standard non-GNU defacto standard options, mostly |  tedu | 2010-04-05 | 1 | -10/+3 |
* | Process patterns containing $ end ^ (but not as last or first char) |  otto | 2007-10-02 | 1 | -2/+1 |
* | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg |  deraadt | 2007-09-02 | 1 | -1/+11 |
* | fts_read returning NULL and errno set is an error. ok ray@ |  otto | 2006-12-26 | 1 | -1/+3 |
* | Reset the number of lines of tail context left to print |  jaredy | 2006-11-17 | 1 | -1/+2 |
* | Allow zero-length patterns with -x so |  jaredy | 2006-09-26 | 1 | -3/+4 |
* | delint; remove redundant vars and functions; ok jaredy@ |  otto | 2006-02-09 | 1 | -7/+2 |
* | Protect begin and end of word markers added to the pattern when |  otto | 2005-04-03 | 1 | -2/+7 |
* | Remove block based mmap optimization. There are newline problems |  otto | 2004-10-03 | 1 | -3/+1 |
* | unused variables; otto ok |  deraadt | 2004-09-16 | 1 | -4/+3 |
* | Stop search when -q option is given and a match is found. Found by jmc@ |  otto | 2004-08-11 | 1 | -2/+2 |
* | Make grep -w behave the same for the fastcomp and the regex case, |  otto | 2004-05-07 | 1 | -2/+10 |
* | Add a new past path for fgrep that is just a simplified version of |  millert | 2004-05-07 | 1 | -8/+47 |
* | Fix anchors (^ or $) in -w mode broken by the last commit's -w overhaul. |  millert | 2004-02-04 | 1 | -3/+3 |
* | dataLen should be size_t to match l->len; ok otto@ tedu@ |  millert | 2004-01-26 | 1 | -3/+3 |
* | Previously, in -w mode, for each match on a line grep would check |  millert | 2004-01-25 | 1 | -36/+42 |
* | Use off_t for file sizes, and don't forget to print a ':' when using |  otto | 2004-01-19 | 1 | -2/+3 |
* | make sure ln.len gets initialized. Okay millert@ |  espie | 2004-01-18 | 1 | -1/+2 |
* | Unbreak grepping for some patterns containing multiple dots. Fixes PR 3597. |  otto | 2003-12-06 | 1 | -2/+2 |
* | prototype declared static, but function was not. add static to function. |  avsm | 2003-10-28 | 1 | -2/+2 |
* | After some discussion on icb it seems a do {} while is what we want |  millert | 2003-07-20 | 1 | -4/+8 |
* | Close PR 3358 by changing the loop from do {} while -> for; tdeval@ OK |  millert | 2003-07-20 | 1 | -9/+4 |
* | restore grep -v semantics, print lines that don't match any (mismatch all) |  dhartmei | 2003-07-10 | 1 | -6/+5 |
* | grep should exit(2) on error, not exit(1) (1 means no matches found). |  millert | 2003-07-10 | 1 | -6/+6 |