| Commit message (Expand) | Author | Age | Files | Lines |
* | Change all tame callers to namechange to pledge(2). |  deraadt | 2015-10-09 | 1 | -3/+3 |
* | grep only opens files read-only, reads via stdio or other methods, performs |  deraadt | 2015-10-03 | 1 | -1/+4 |
* | use strtonum to parse the number of lines of context. |  dlg | 2015-08-27 | 1 | -10/+9 |
* | Put fts_close() where missing. |  uebayasi | 2015-06-25 | 1 | -2/+2 |
* | Add warning when user specifies -R but no files, like GNU grep. |  millert | 2015-04-30 | 1 | -1/+3 |
* | Don't include limits.h or sys/limits.h since grep.h already does it |  millert | 2015-03-16 | 2 | -4/+2 |
* | Include limits.h, not sys/limits.h and include stdint.h for SIZE_MAX. |  millert | 2015-03-16 | 1 | -2/+3 |
* | SIZE_MAX is standard, we should be using it in preference to the |  millert | 2015-02-06 | 1 | -2/+2 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 3 | -9/+5 |
* | An article on medium.com highlighted that grep |  daniel | 2015-01-13 | 1 | -3/+3 |
* | 1. They're flags, not counters. Set to one instead of incrementing. |  tedu | 2015-01-10 | 2 | -23/+15 |
* | use reallocarray() |  deraadt | 2014-12-01 | 3 | -5/+15 |
* | Prefer setvbuf() to setlinebuf() for portability; ok deraadt@ |  millert | 2014-11-26 | 1 | -2/+2 |
* | Make option string/struct const (since it is...). I've had this |  millert | 2014-11-26 | 1 | -4/+4 |
* | Check the mode flag being passed in to mmopen() instead of ignoring it. |  brad | 2014-11-08 | 1 | -3/+3 |
* | Use errc/warnc to simplify code. |  guenther | 2014-05-20 | 1 | -2/+2 |
* | unsigned char casts for ctype |  deraadt | 2013-11-26 | 2 | -5/+5 |
* | simple prototype repairs |  deraadt | 2013-11-12 | 1 | -2/+2 |
* | blacklist a select few characters instead of a limited whitelist for |  tedu | 2013-05-04 | 1 | -11/+21 |
* | remove uesless Pp; |  jmc | 2013-01-17 | 1 | -3/+2 |
* | Fix exit status when there is an error reading a file. |  millert | 2012-12-29 | 3 | -6/+10 |
* | 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 |
* | Fix spacing |  aschrijver | 2011-07-17 | 1 | -4/+4 |
* | 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 | 5 | -33/+57 |
* | Switch binary file detection from !(isprint() || isspace()) to checking |  stsp | 2011-06-20 | 1 | -20/+14 |
* | add -H (opposite of -h) to always print name. ok deraadt millert |  tedu | 2011-03-04 | 3 | -12/+21 |
* | add an EXIT STATUS section for /usr/bin; |  jmc | 2010-09-03 | 1 | -3/+3 |
* | Remove the "fast" grep code if SMALL. This has the side effect of breaking |  tedu | 2010-07-02 | 2 | -3/+27 |
* | Do not include mmap support with -DSMALL. |  nicm | 2010-07-02 | 3 | -3/+17 |
* | prevent out-of-bounds access with empty pattern (fixes "grep -x ''") |  eric | 2010-04-25 | 1 | -2/+2 |
* | Fix "grep -e foo -w" crash. The problem lies in 'e' getopt clause |  jacekm | 2010-04-20 | 1 | -4/+17 |
* | make this page read a little better; |  jmc | 2010-04-05 | 1 | -4/+4 |
* | remove some non-POSIX standard non-GNU defacto standard options, mostly |  tedu | 2010-04-05 | 4 | -60/+16 |
* | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few |  jmc | 2009-02-08 | 1 | -3/+3 |
* | two globals not needed in NOZ mode |  deraadt | 2008-10-16 | 1 | -1/+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 | 3 | -5/+16 |
* | convert to new .Dd format; |  jmc | 2007-05-31 | 1 | -2/+2 |
* | - use a consistent text for STANDARDS |  jmc | 2007-05-30 | 1 | -2/+2 |
* | - Be explicit on command line checking, instead of relying on patterns, |  kili | 2007-02-13 | 2 | -20/+17 |
* | 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 |
* | Check length before checking index of len - 1. |  ray | 2006-11-02 | 1 | -2/+2 |
* | Allow zero-length patterns with -x so |  jaredy | 2006-09-26 | 2 | -6/+7 |
* | That should be S_ISREG, dunno why I committed this wrong version; |  otto | 2006-09-20 | 1 | -2/+2 |
* | Use S_IS* macros insted of masking with S_IF* flags. The latter may |  otto | 2006-09-19 | 1 | -2/+2 |
* | Break patterns containing newlines into multiple patterns like POSIX says. |  otto | 2006-03-07 | 1 | -3/+15 |