Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-20 | Warn when rename() fails in openssl(1) apps. | Doug Hogan | |
Fixes Coverity issues 78795 and 78803. ok bcook@ | |||
2015-07-20 | sf points out sudo doesn't allow SHELL in children | Ted Unangst | |
2015-07-20 | check that badlisted env has = after the name | Ted Unangst | |
2015-07-20 | rescope and rename some variables to reduce pressure on the alphabet | Ted Unangst | |
2015-07-20 | introduce a minimal badset ($ENV) for environment stripping so that | Ted Unangst | |
root shells read the right .kshrc | |||
2015-07-20 | mention that the default of UseDNS=no implies that hostnames cannot | Damien Miller | |
be used for host matching in sshd_config and authorized_keys; bz#2045, ok dtucker@ | |||
2015-07-19 | wrap long lines and kill some whitespace | Sebastian Benoit | |
2015-07-19 | In the config file allow line continuations with backslashes. | Sebastian Benoit | |
Document this, and comments and environment variables. ok tedu@ | |||
2015-07-19 | when using -D, do not use the mode set for the target file as the directory mode | Jasper Lievisse Adriaanse | |
ok millert@ | |||
2015-07-19 | figure out the linewidth at initialization, rather than late | Theo de Raadt | |
ok tedu miod | |||
2015-07-19 | whitespace; | Jason McIntyre | |
2015-07-19 | spell out complete path to config file, okay tedu@ | Marc Espie | |
2015-07-19 | Print strerror, not just the filename, if opening the inplace file fails. | Stuart Henderson | |
ok jasper@ | |||
2015-07-19 | SIGCHLD handler was established before forking into two processes. | Theo de Raadt | |
As a result it also ran in the child (incorrect). ok miod | |||
2015-07-19 | Do not fork and exec gunzip(1), just link with libz instead. | Ingo Schwarze | |
As discussed with deraadt@, that's cleaner and will help tame(2). Something like this was also suggested earlier by bapt at FreeBSD. Minus 50 lines of code, deleting one interface function (mparse_wait), no functional change intended. | |||
2015-07-19 | Free memory when finished. | Doug Hogan | |
Fixes coverity 78835. ok bcook@ | |||
2015-07-19 | Make KTR_SYSRET records variables variables sized, leaving out the | Philip Guenther | |
retval on error, including a long long retval on successful lseek(), and including a register_t retval for other successes. This fixes lseek reporting on ILP32 archs. While here, reworking internal kern_ktrace.c bits to be able to pass two buffers to ktrwriteraw(), so we can avoid mallocing a buffer in some cases and so that KTR_GENIO logs are split at PAGE_SIZE, not PAGE_SIZE-sizeof(struct ktrgenio) ok miod@ | |||
2015-07-19 | Only close descriptor if not already closed. | Doug Hogan | |
Fixes coverity 78916. ok miod@ bcook@ | |||
2015-07-19 | Free variable before potentially reusing. | Doug Hogan | |
Fixes coverity 78824. ok bcook@ miod@ | |||
2015-07-19 | Free passin on error. | Doug Hogan | |
Fixes coverity 78826. ok miod@ bcook@ | |||
2015-07-19 | Fix coverity 105339, by correctly checking return from strtoll | Bob Beck | |
ok miod@ bcook@ | |||
2015-07-19 | Figure out the tty width using TIOCGWINSZ early on. Will make tame(2) | Theo de Raadt | |
integration easier in the future. | |||
2015-07-19 | sudo emulation: if execvpe fails with ENOENT, print "command not found" | Ted Unangst | |
requested by krw | |||
2015-07-19 | Remove effectively unused variable. | Doug Hogan | |
Fixes Coverity issue 21693. ok beck@ bcook@ | |||
2015-07-19 | If we aren't on a tty, clear the pager flag up front. | Ingo Schwarze | |
Just to clean up code structure, no functional change. | |||
2015-07-18 | Handle short writes and TLS_{READ,WRITE}_AGAIN around tls_write(). | Alexander Bluhm | |
input doug@; OK beck@ | |||
2015-07-18 | rearrange variable decls a little | Ted Unangst | |
2015-07-18 | kill trailing whitespace | Jasper Lievisse Adriaanse | |
2015-07-18 | add -D to create the full destination path before installing the source into it | Jasper Lievisse Adriaanse | |
ok millert@ | |||
2015-07-18 | various fixes; ok jasper | Jason McIntyre | |
2015-07-18 | don't ignore PKCS#11 hosted keys that return empty CKA_ID; | Damien Miller | |
patch by Jakub Jelen via bz#2429; ok markus | |||
2015-07-18 | skip uninitialised PKCS#11 slots; patch from Jakub Jelen in bz#2427 | Damien Miller | |
ok markus@ | |||
2015-07-18 | only query each keyboard-interactive device once per authentication | Damien Miller | |
request regardless of how many times it is listed; ok markus@ | |||
2015-07-18 | Add RCS ID. | Brian Callahan | |
ok deraadt@ | |||
2015-07-18 | identity isn't optional. | Anthony J. Bentley | |
ok tedu@ | |||
2015-07-18 | Add doas -s as a shorthand for doas $SHELL. ok tedu | Nicholas Marriott | |
2015-07-18 | Insist that manual page file name extensions must begin with a digit, | Ingo Schwarze | |
lest pkg.conf(5) be shown when pkg(5) is asked for; issue reported by Michael Reed <m dot reed at mykolab dot com>. | |||
2015-07-18 | clean up the temporary file when the process dies from a signal | Ingo Schwarze | |
2015-07-18 | Add more error checking and use named constants when useful. | Doug Hogan | |
ok sthen@ tedu@ | |||
2015-07-17 | Initial, still somewhat experimental implementation to leverage | Ingo Schwarze | |
less(1) -T and :t ctags(1)-like functionality to jump to the definitions of various terms inside manual pages. To be polished in the tree, so bear with me and report issues. Technically, if less(1) is used as a pager, information is collected by the mdoc(7) terminal formatter, first stored using the ohash library, then ultimately written to a temporary file which is passed to less via -T. No change intended for other output formatters or when running without a pager. Based on an idea from Kristaps using feedback from many, in particular phessler@ nicm@ millert@ halex@ doug@ kspillner@ deraadt@. | |||
2015-07-17 | add missing prototype | Jasper Lievisse Adriaanse | |
2015-07-17 | 7 space indents?? | Theo de Raadt | |
2015-07-17 | add some missing content and markup and optimize some indentation | Ingo Schwarze | |
ok tedu@ | |||
2015-07-17 | add -i flag to sed to do in-place editing; mostly based on freebsd | Jasper Lievisse Adriaanse | |
feedback/ok deraadt@ millert@ | |||
2015-07-17 | tweak wording | Ted Unangst | |
2015-07-17 | fix leak, found by coverity, ID 78877 | Bob Beck | |
ok miod@ jsing@ | |||
2015-07-17 | improve wording, from Thanos Tsouanas | Ted Unangst | |
2015-07-17 | Remove SSLv3 support from openssl(1) s_time. | Doug Hogan | |
ok miod@ bcook@ beck@ | |||
2015-07-17 | Remove SSLv3 support from openssl(1) s_server. | Doug Hogan | |
ok miod@ bcook@ beck@ | |||
2015-07-17 | Remove SSLv3 support from openssl(1) s_client. | Doug Hogan | |
ok miod@ bcook@ beck@ |