| Age | Commit message (Expand) | Author | Files | Lines |
| 2020-01-16 | Usually, -width Fl (which is 10n) is too wide and hence ugly. |  schwarze | 1 | -3/+3 |
| 2019-12-30 | Do not perform top-level sort when -c is used with a -k field. |  millert | 1 | -2/+3 |
| 2019-09-06 | More Version 1 AT&T UNIX history. |  schwarze | 1 | -3/+3 |
| 2019-06-28 | When system calls indicate an error they return -1, not some arbitrary |  deraadt | 1 | -3/+3 |
| 2019-06-02 | In manpages, don't escape apostrophes as \'; it's rarely what you want. |  bentley | 1 | -5/+9 |
| 2019-05-15 | re-indent bwscoll() after previous commit; no binary change |  schwarze | 1 | -69/+69 |
| 2019-05-15 | Cleanup: |  schwarze | 5 | -144/+21 |
| 2019-05-13 | Delete tentacles of LC_NUMERIC support. |  schwarze | 4 | -106/+9 |
| 2019-02-24 | short option comes first, followed by the corresponding long option |  anton | 1 | -3/+3 |
| 2017-06-10 | add missing blanks before several delimiters; found with mandoc -Tlint |  schwarze | 1 | -10/+10 |
| 2017-01-04 | Fix a crash when "sort -m" is given no files. From Julien Ramseier. |  millert | 1 | -2/+5 |
| 2016-10-17 | /var/tmp -> /tmp |  lteo | 2 | -6/+6 |
| 2016-10-11 | missing .Fl macro, from Jan Stary |  schwarze | 1 | -3/+7 |
| 2016-07-14 | make several program to use "chown" promise. |  semarie | 1 | -3/+3 |
| 2015-12-31 | No need for sysexits.h here. |  millert | 2 | -4/+2 |
| 2015-12-11 | Use %zu to print size_t's rather than casting to int. |  mmcc | 1 | -3/+3 |
| 2015-10-24 | The default modifier should be copied for empty keys even if -b is |  millert | 1 | -5/+6 |
| 2015-10-18 | Do not warn for sort -o if we can't chown the output temporary file |  millert | 1 | -6/+4 |
| 2015-10-17 | Pledge; OK millert@ tobias@ |  tim | 1 | -33/+70 |
| 2015-10-14 | Copy permissions AND ownership when -o will override an input file. |  tobias | 1 | -4/+8 |
| 2015-10-13 | Ignore the setuid/setgid/sticky bits when copying the permissions of an input |  tim | 1 | -2/+2 |
| 2015-10-13 | -C and -c allow at most one input file. Ensure this is the case when the |  tim | 1 | -6/+6 |
| 2015-04-05 | Document that some sorts uses -b w/o key fields. |  millert | 1 | -1/+12 |
| 2015-04-05 | For the -g flag, treat non-floating point keys as 0, similar to -n. |  millert | 1 | -6/+18 |
| 2015-04-05 | The -b flag should only apply when key fields are specified. |  millert | 3 | -13/+24 |
| 2015-04-05 | Do not permute command line arguments but still support the |  millert | 2 | -7/+24 |
| 2015-04-03 | Only one input file is allowed with the -c/-C flags. |  millert | 1 | -1/+5 |
| 2015-04-03 | The combination of -c and -o is not specified by POSIX. In fact, the call |  tobias | 2 | -36/+17 |
| 2015-04-03 | If -S has been supplied multiple times, only take last one into account. |  tobias | 1 | -4/+7 |
| 2015-04-02 | murder excessive whitespace |  deraadt | 3 | -8/+8 |
| 2015-04-02 | Prevent integer overflow when parsing -S argument as percentage. |  tobias | 1 | -1/+7 |
| 2015-04-02 | Global variable free_memory is only used in sort.c's set_hw_params, |  tobias | 3 | -6/+7 |
| 2015-04-02 | Fixed whitespace issues. |  tobias | 2 | -5/+5 |
| 2015-04-02 | Zap some more NULL checks in front of free. |  tobias | 2 | -11/+7 |
| 2015-04-02 | No need to strdup environment variable or command line arguments here. |  tobias | 1 | -5/+5 |
| 2015-04-02 | Add signal name instead of array index (which is not the signal number) |  tobias | 1 | -2/+2 |
| 2015-04-02 | Don't need to include stdint.h |  millert | 1 | -2/+1 |
| 2015-04-02 | No need for the umask() dance now that temp files are created |  millert | 1 | -30/+19 |
| 2015-04-02 | Don't install signal handlers for SIGQUIT, SIGVTALRM, SIGPROF. |  millert | 1 | -3/+3 |
| 2015-04-02 | When using mmap() we don't need to keep the open fd around, closing |  millert | 1 | -9/+3 |
| 2015-04-02 | closefile() already checks for stdin so no need to check in the caller. |  millert | 1 | -3/+2 |
| 2015-04-01 | Check for overflow when handling buffer size suffixes. |  millert | 1 | -2/+20 |
| 2015-04-01 | Block signals during tmp_files insertion, so that the signal handler |  deraadt | 1 | -1/+7 |
| 2015-04-01 | Use reallocarray instead of malloc. |  millert | 1 | -2/+3 |
| 2015-04-01 | Just use sort_reallocarray() everywhere. |  millert | 4 | -19/+7 |
| 2015-04-01 | Revert unintentional commit. This will be revisited shortly. |  millert | 1 | -3/+1 |
| 2015-04-01 | Style nits, remove whitespace at the start of a function. |  millert | 2 | -6/+4 |
| 2015-04-01 | Remove some unneeded NULL checks that don't really help anything. |  millert | 1 | -128/+109 |
| 2015-04-01 | Use exit value 2 for mutually exclusive option errors. |  millert | 1 | -5/+11 |
| 2015-04-01 | Fix typo in revision 1.55 |  millert | 1 | -2/+2 |