summaryrefslogtreecommitdiff
path: root/usr.bin/sort/sort.c
AgeCommit message (Expand)Author
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-05-15Cleanup:Ingo Schwarze
2019-05-13Delete tentacles of LC_NUMERIC support.Ingo Schwarze
2017-01-04Fix a crash when "sort -m" is given no files. From Julien Ramseier.Todd C. Miller
2016-07-14make several program to use "chown" promise.Sebastien Marie
2015-10-24The default modifier should be copied for empty keys even if -b isTodd C. Miller
2015-10-18Do not warn for sort -o if we can't chown the output temporary fileTodd C. Miller
2015-10-17Pledge; OK millert@ tobias@Tim van der Molen
2015-10-14Copy permissions AND ownership when -o will override an input file.Tobias Stoeckmann
2015-10-13Ignore the setuid/setgid/sticky bits when copying the permissions of an inputTim van der Molen
2015-10-13-C and -c allow at most one input file. Ensure this is the case when theTim van der Molen
2015-04-05The -b flag should only apply when key fields are specified.Todd C. Miller
2015-04-05Do not permute command line arguments but still support theTodd C. Miller
2015-04-03Only one input file is allowed with the -c/-C flags.Todd C. Miller
2015-04-03The combination of -c and -o is not specified by POSIX. In fact, the callTobias Stoeckmann
2015-04-03If -S has been supplied multiple times, only take last one into account.Tobias Stoeckmann
2015-04-02Prevent integer overflow when parsing -S argument as percentage.Tobias Stoeckmann
2015-04-02Global variable free_memory is only used in sort.c's set_hw_params,Tobias Stoeckmann
2015-04-02Fixed whitespace issues.Tobias Stoeckmann
2015-04-02No need to strdup environment variable or command line arguments here.Tobias Stoeckmann
2015-04-02Add signal name instead of array index (which is not the signal number)Tobias Stoeckmann
2015-04-02Don't install signal handlers for SIGQUIT, SIGVTALRM, SIGPROF.Todd C. Miller
2015-04-01Check for overflow when handling buffer size suffixes.Todd C. Miller
2015-04-01Just use sort_reallocarray() everywhere.Todd C. Miller
2015-04-01Remove some unneeded NULL checks that don't really help anything.Todd C. Miller
2015-04-01Use exit value 2 for mutually exclusive option errors.Todd C. Miller
2015-04-01Fix typo in revision 1.55Todd C. Miller
2015-04-01Fix last instance of malloc(n * sizeof(char)) idiom.Todd C. Miller
2015-04-01The argument to --sort is not optional so no need to check for NULL optarg.Todd C. Miller
2015-04-01No need for if (x) free(x) style checks, this is not K&R.Todd C. Miller
2015-04-01No need for an else clause after a continue, it just makes theTodd C. Miller
2015-04-01Style nits, remove whitespace at the start of a function.Todd C. Miller
2015-04-01If strtoul() fails to parse the argument to -k, just pass theTodd C. Miller
2015-04-01Use memcpy() not strncpy() when dynamically allocating and copyingTodd C. Miller
2015-04-01Pass size of sopts buffer in to parse_pos_obs() for a length check andTodd C. Miller
2015-04-01Better range checking for "sort -S" memory size.Todd C. Miller
2015-04-01Use strtonum() to parse argument to --batch-size and document theTodd C. Miller
2015-03-31Ignore TMPDIR environment variable if setuid or setgid.Todd C. Miller
2015-03-31There's no good reason to make -m and -c mutually exclusive.Todd C. Miller
2015-03-31Add missing call to atexit() to clean up temp files on error.Todd C. Miller
2015-03-30Use _exit() from signal handler so we don't call atexit handlers orTodd C. Miller
2015-03-30Do not install signal handlers for SIGABRT, SIGBUS or SIGSEGV. AlsoTodd C. Miller
2015-03-20Use the hw.usermem sysctl to determine the amount user (non-kernel)Todd C. Miller
2015-03-20Remove custom getdelim(3) and fix a small memory leak. From Andre Smagin.Todd C. Miller
2015-03-19update the note in STANDARDS about which options are extensions; also add -mJason McIntyre
2015-03-19first run through this page. mainly getting SYNOPSIS and usage() orderlyJason McIntyre
2015-03-17Initial import of FreeBSD sort.Todd C. Miller
2014-10-26Add parentheses to suppress compiler warning.Brad Smith
2014-10-11Userland reallocarray() audit.Doug Hogan
2013-11-13repair buffer resizing "undershoot", and some minor issues withTheo de Raadt