Age | Commit message (Expand) | Author |
2015-04-05 | The -b flag should only apply when key fields are specified. | Todd C. Miller |
2015-04-05 | Do not permute command line arguments but still support the | Todd C. Miller |
2015-04-03 | Only one input file is allowed with the -c/-C flags. | Todd C. Miller |
2015-04-03 | The combination of -c and -o is not specified by POSIX. In fact, the call | Tobias Stoeckmann |
2015-04-03 | If -S has been supplied multiple times, only take last one into account. | Tobias Stoeckmann |
2015-04-02 | Prevent integer overflow when parsing -S argument as percentage. | Tobias Stoeckmann |
2015-04-02 | Global variable free_memory is only used in sort.c's set_hw_params, | Tobias Stoeckmann |
2015-04-02 | Fixed whitespace issues. | Tobias Stoeckmann |
2015-04-02 | No need to strdup environment variable or command line arguments here. | Tobias Stoeckmann |
2015-04-02 | Add signal name instead of array index (which is not the signal number) | Tobias Stoeckmann |
2015-04-02 | Don't install signal handlers for SIGQUIT, SIGVTALRM, SIGPROF. | Todd C. Miller |
2015-04-01 | Check for overflow when handling buffer size suffixes. | Todd C. Miller |
2015-04-01 | Just use sort_reallocarray() everywhere. | Todd C. Miller |
2015-04-01 | Remove some unneeded NULL checks that don't really help anything. | Todd C. Miller |
2015-04-01 | Use exit value 2 for mutually exclusive option errors. | Todd C. Miller |
2015-04-01 | Fix typo in revision 1.55 | Todd C. Miller |
2015-04-01 | Fix last instance of malloc(n * sizeof(char)) idiom. | Todd C. Miller |
2015-04-01 | The argument to --sort is not optional so no need to check for NULL optarg. | Todd C. Miller |
2015-04-01 | No need for if (x) free(x) style checks, this is not K&R. | Todd C. Miller |
2015-04-01 | No need for an else clause after a continue, it just makes the | Todd C. Miller |
2015-04-01 | Style nits, remove whitespace at the start of a function. | Todd C. Miller |
2015-04-01 | If strtoul() fails to parse the argument to -k, just pass the | Todd C. Miller |
2015-04-01 | Use memcpy() not strncpy() when dynamically allocating and copying | Todd C. Miller |
2015-04-01 | Pass size of sopts buffer in to parse_pos_obs() for a length check and | Todd C. Miller |
2015-04-01 | Better range checking for "sort -S" memory size. | Todd C. Miller |
2015-04-01 | Use strtonum() to parse argument to --batch-size and document the | Todd C. Miller |
2015-03-31 | Ignore TMPDIR environment variable if setuid or setgid. | Todd C. Miller |
2015-03-31 | There's no good reason to make -m and -c mutually exclusive. | Todd C. Miller |
2015-03-31 | Add missing call to atexit() to clean up temp files on error. | Todd C. Miller |
2015-03-30 | Use _exit() from signal handler so we don't call atexit handlers or | Todd C. Miller |
2015-03-30 | Do not install signal handlers for SIGABRT, SIGBUS or SIGSEGV. Also | Todd C. Miller |
2015-03-20 | Use the hw.usermem sysctl to determine the amount user (non-kernel) | Todd C. Miller |
2015-03-20 | Remove custom getdelim(3) and fix a small memory leak. From Andre Smagin. | Todd C. Miller |
2015-03-19 | update the note in STANDARDS about which options are extensions; also add -m | Jason McIntyre |
2015-03-19 | first run through this page. mainly getting SYNOPSIS and usage() orderly | Jason McIntyre |
2015-03-17 | Initial import of FreeBSD sort. | Todd C. Miller |
2014-10-26 | Add parentheses to suppress compiler warning. | Brad Smith |
2014-10-11 | Userland reallocarray() audit. | Doug Hogan |
2013-11-13 | repair buffer resizing "undershoot", and some minor issues with | Theo de Raadt |
2012-10-30 | fdopen(3) return a FILE * not an int, so compare against NULL. | Gleydson Soares |
2009-12-22 | implement -C (silent -c), required by POSIX.1-2008; | Ingo Schwarze |
2009-10-28 | Don't catch a signal if we inherited it as ignored. Instigated by | Philip Guenthe |
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt |
2007-08-22 | sort usage(); | Jason McIntyre |
2007-08-21 | Add a -s option to make the radix sort be a stable sort. Based on | Todd C. Miller |
2007-03-13 | Use separate buffers in fsort.c and msort.c. Fixes a problem with | Todd C. Miller |
2007-03-11 | some bug (in sort? or compiler) gets hit too late in the release cycle. | Theo de Raadt |
2007-03-07 | Use separate buffers in fsort.c and msort.c. Fixes a problem with | Todd C. Miller |
2006-10-29 | Remove useless code that can cause a SEGV if a buffer is realloc()ed. | Todd C. Miller |
2006-10-28 | revert previous change; causes segfault when called from | Christian Weisgerber |