Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-02 | use correct capitalization of 'BlackBerry' | Jasper Lievisse Adriaanse | |
"sure" deraadt@ | |||
2015-04-02 | document MODPY_PI | Jasper Lievisse Adriaanse | |
2015-04-02 | Handle the case where multiple calls to SSL_shutdown() are required to | Joel Sing | |
close the connection. Also correctly handle the error on failure. Diff from cookieandscream via github. | |||
2015-04-02 | No need for the umask() dance now that temp files are created | Todd C. Miller | |
with mkstemp(). Also remove useless else after a return. | |||
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 | |
the fd does not unmap the region. | |||
2015-04-02 | closefile() already checks for stdin so no need to check in the caller. | Todd C. Miller | |
2015-04-02 | Change gcc and ld semantics to make static PIE the default when invoking | Pascal Stumpf | |
'cc -static'. To explicitly request the legacy behaviour, use -nopie. For the few port affected by this, bumps will follow shortly. looks good to kettenis@, ok kurt@ | |||
2015-04-02 | Merge openpic_init() into openpic_attach(), no functional change. | Martin Pieuchot | |
2015-04-02 | One function pointer per pic function is enough. | Martin Pieuchot | |
2015-04-02 | Cleanup function definitions, use only one define for DEBUG and remove | Martin Pieuchot | |
unused headers. | |||
2015-04-02 | Call if_input() without grabbing the kernel lock first. | Mark Kettenis | |
2015-04-02 | Grab the kernel lock around the bpf_mtap_ether() call in if_input(). This | Mark Kettenis | |
allows drivers to start calling if_input() without holding the kernel lock while others work on make the bpf code mpsafe. ok dlg@, mpi@ | |||
2015-04-02 | Correct man page title. | Joel Sing | |
Diff from Tim van der Molen. ok jmc@ | |||
2015-04-02 | Document the fact that the tls_accept_*() functions can return | Joel Sing | |
TLS_READ_AGAIN and TLS_WRITE_AGAIN. Based on a diff from Tim van der Molen. | |||
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 | |
cannot encounter an incoherent list. It was an absolutely tiny signal race. ok millert | |||
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 | |
It is better to crash when given bad input rather than producing a wrong result. None of the checks can actually be triggered. | |||
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 | |
It is better to crash when given bad input rather than producing a wrong result. None of the checks can actually be triggered. | |||
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 | |
code harder to read. | |||
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 | |
error back to the caller instead of calling err() directly. The user gets a more useful error message this way. | |||
2015-04-01 | Use memcpy() not strncpy() when dynamically allocating and copying | Todd C. Miller | |
a substring. | |||
2015-04-01 | Pass size of sopts buffer in to parse_pos_obs() for a length check and | Todd C. Miller | |
use size_t not int for column and field vars. | |||
2015-04-01 | Use mkstemp to generate a new temporary file name. | Tobias Stoeckmann | |
ok millert | |||
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 | |
minimum value in the manual. | |||
2015-04-01 | Add cpu_pae variable (which will be later used to determine if PAE mode is | Mike Larkin | |
in use) now so that libkvm can be fixed before the rest of the bulk of PAE support is committed. requested by and ok deraadt@ | |||
2015-04-01 | Remove unused len variable. | Todd C. Miller | |
2015-04-01 | fix typo in comment; OK mpi@ | Gleydson Soares | |
2015-04-01 | Correct comments. | Masao Uebayashi | |
2015-04-01 | Run most of the interrupt handler without holding the kernel lock. | Mark Kettenis | |
2015-04-01 | Kill useless comments talking about ether_input(). | Martin Pieuchot | |
2015-04-01 | Remove annoying comment mentionning ether_output(). | Martin Pieuchot | |
2015-04-01 | Let man(1) and apropos(1) work even when the current directory | Ingo Schwarze | |
is unusable: Only change back to the current directory when the directory was changed before and the next path is relative. This is now more similar to what makewhatis(8) does. Issue reported by espie@. | |||
2015-04-01 | Small cleanups when attaching sensors, from David Higgs. | Martin Pieuchot | |
2015-04-01 | update currency exchange rates; | Jason McIntyre | |
2015-04-01 | Zero the tls cert/key length variables when inheriting a server | Jonathan Gray | |
configuration for multiple listen statements in a server block. Otherwise httpd will crash when a listen statement with tls is followed by a listen statement without tls. Problem reported by Kent Fritz on misc. ok jsing@ looks good deraadt@ | |||
2015-04-01 | create a taskq for network tasks to run in. cut ether_input_mbuf | David Gwynne | |
and if_input up so the work ether_input does gets run on the task instead of directly from hardware receive handlers. this is a step toward letting hardware drivers run without biglock by shoving the work the stack does which needs that lock sideways. general agreement at s2k15 ok mpi@ kettenis@ claudio@ |