Age | Commit message (Expand) | Author |
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 need to include stdint.h | Todd C. Miller |
2015-04-02 | No need for the umask() dance now that temp files are created | Todd C. Miller |
2015-04-02 | Don't install signal handlers for SIGQUIT, SIGVTALRM, SIGPROF. | Todd C. Miller |
2015-04-02 | When using mmap() we don't need to keep the open fd around, closing | Todd C. Miller |
2015-04-02 | closefile() already checks for stdin so no need to check in the caller. | Todd C. Miller |
2015-04-01 | Check for overflow when handling buffer size suffixes. | Todd C. Miller |
2015-04-01 | Block signals during tmp_files insertion, so that the signal handler | Theo de Raadt |
2015-04-01 | Use reallocarray instead of malloc. | Todd C. Miller |
2015-04-01 | Just use sort_reallocarray() everywhere. | Todd C. Miller |
2015-04-01 | Revert unintentional commit. This will be revisited shortly. | Todd C. Miller |
2015-04-01 | Style nits, remove whitespace at the start of a function. | 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 | Remove some unneeded NULL checks that don't really help anything. | Todd C. Miller |
2015-04-01 | Let reallocarray do the multiplication for us. | Todd C. Miller |
2015-04-01 | Use reallocarray. | 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 | Use mkstemp to generate a new temporary file name. | Tobias Stoeckmann |
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-04-01 | Remove unused len variable. | Todd C. Miller |
2015-04-01 | Let man(1) and apropos(1) work even when the current directory | Ingo Schwarze |
2015-04-01 | update currency exchange rates; | Jason McIntyre |
2015-03-31 | downgrade error() for known_hosts parse errors to debug() to quiet | Damien Miller |
2015-03-31 | fd leak for !ssh1 case; found by unittests; ok markus@ | Damien Miller |
2015-03-31 | don't fatal when a !ssh1 sshd is reexeced from a w/ssh1 listener; | Damien Miller |
2015-03-31 | Remove a useless use of cat. | Tobias Stoeckmann |
2015-03-31 | Add a helper function to convert time, and add session_activity formats | Nicholas Marriott |
2015-03-31 | Fix some format specifier nits, from Ben Boeckel. | Nicholas Marriott |
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-31 | Comments are only supported for RSA1 keys. If a user tried to add one and | Tobias Stoeckmann |
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-30 | Use sort_asprintf() | Todd C. Miller |
2015-03-30 | Add sort_asprintf() | Todd C. Miller |
2015-03-30 | ssh-askpass(1) is the default, overridden by SSH_ASKPASS; | Jason McIntyre |
2015-03-30 | fix uninitialised memory read when parsing a config file consisting | Damien Miller |
2015-03-29 | Escape punctuation characters that have a different meaning in -Tpdf. | Anthony J. Bentley |