Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-01 | update to sudo 1.7.2p5 | Todd C. Miller | |
2010-03-01 | zap what seems to be a left-over debug message; ok markus@ | Otto Moerbeek | |
2010-03-01 | Add printing of current profile and feature information to 'info' | Kenneth R Westerback | |
command with -v. Make a second -v cause printing of raw feature data and a full list of profiles. A few minor tweaks to the feature bitmap handling. Helps in debugging media problems in cdio. Suggestions from fgsch@, man page fixes from jmc@ as usual. ok beck@ deraadt@ | |||
2010-02-28 | %t didn't properly remove trailing spaces from the end of the prompt. | Jasper Lievisse Adriaanse | |
patch from daniel malament in pr 6235 ok millert@ | |||
2010-02-28 | In -x mode, if count was > 1 we would print both the hex and ascii versions | Todd C. Miller | |
of the response (for count == 1 only the hex version was printed). Make things consistent and match the docs by only printing the hex mode even if count > 1. OK otto@ | |||
2010-02-27 | Fix the atelnet() function, which was wrong in several ways. | Nicholas Marriott | |
Pointed out by obsd at happyjack.org, fix based on a diff from kili@. ok deraadt | |||
2010-02-26 | tweak previous; | Jason McIntyre | |
2010-02-26 | Add support for certificate key types for users and hosts. | Damien Miller | |
OpenSSH certificate key types are not X.509 certificates, but a much simpler format that encodes a public key, identity information and some validity constraints and signs it with a CA key. CA keys are regular SSH keys. This certificate style avoids the attack surface of X.509 certificates and is very easy to deploy. Certified host keys allow automatic acceptance of new host keys when a CA certificate is marked as trusted in ~/.ssh/known_hosts. see VERIFYING HOST KEYS in ssh(1) for details. Certified user keys allow authentication of users when the signing CA key is marked as trusted in authorized_keys. See "AUTHORIZED_KEYS FILE FORMAT" in sshd(8) for details. Certificates are minted using ssh-keygen(1), documentation is in the "CERTIFICATES" section of that manpage. Documentation on the format of certificates is in the file PROTOCOL.certkeys feedback and ok markus@ | |||
2010-02-26 | Old news: there is an experimental "loongson" port. | Ingo Schwarze | |
This commit corresponds to what jmc@ did in share/tmac/mdoc/doc-common and share/man/man7/mdoc.samples.7 on January 24. | |||
2010-02-26 | The groff_man(7) manual says "the first line of text following" .TP is | Ingo Schwarze | |
used as a label, not "the first line following", so allow (some kinds of) intervening macros - some people actually put macros in between. On the other hand, when there is no text line before the next block macro, that is, when the .TP block ends without any text line, then something *is* broken, so still error out in that case. | |||
2010-02-26 | Support .It .Xo. | Ingo Schwarze | |
The trick is to not switch from the .It header to the body at EOL, but, in case an explicit block macro follows, at the end of the block. | |||
2010-02-25 | The correct value of DEL is 0x7F, not 0xFF. This is purely a documentation | Christian Weisgerber | |
issue--od(1) and hexdump(1) behave as expected. From FreeBSD. | |||
2010-02-24 | Typo fix from Tim van der Molen. | Nicholas Marriott | |
2010-02-24 | Don't set the terminal to nonblocking on detach until we have finished with it | Nicholas Marriott | |
entirely. | |||
2010-02-24 | Add $OpenBSD$ tags in comments, our portable-syncing scripts use these | Damien Miller | |
2010-02-23 | Fix the worst among the fatal block-nesting issues we have in our tree, | Ingo Schwarze | |
in the end simply changing Oo Xo Oo Oc Oc Xc to Oo Xo Oo Oc Xc Oc. I tried five different variants without the Xo/Xc, because there is no real reason why Xo/Xc should be needed here, and two additional variants with Xo/Xc that look more pretty than what i'm now committing. All seven alternatives work both with mandoc and groff 1.20.1, but all seven trigger various different bugs in our old groff, and we still need to remain compatible with our old groff right now. ok jmc@ sobrado@ | |||
2010-02-23 | bump patchlevel | Todd C. Miller | |
2010-02-22 | Check for pseudo-command by looking at the first character of the | Todd C. Miller | |
command in sudoers instead of checking the user-supplied command for a slash. | |||
2010-02-22 | Option to set the characters considered word separators in copy mode, from | Nicholas Marriott | |
Micah Cowan. | |||
2010-02-22 | In load-buffer, read until EOF rather than using stat() and reading a fixed | Nicholas Marriott | |
size. Allows use of FIFOs and whatnot. From Tiago Cunha, idea from Fulvio Ciriaco. | |||
2010-02-22 | Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursor | Nicholas Marriott | |
should not wrap at the end of the text on the line but should be allowed to move freely. | |||
2010-02-22 | Display -t argument to new-session, from Tiago Cunha. | Nicholas Marriott | |
2010-02-21 | `-q' is an output option, hence it is mutually exclusive. | Igor Sobrado | |
ok jmc@ | |||
2010-02-21 | dlclose() call should also be #ifdef HAVE_DLOPEN | Theo de Raadt | |
2010-02-20 | unbreak build for NOPIC systems; noticed, help and ok deraadt@ | Markus Friedl | |
2010-02-19 | gcc2 requires decls before code | Theo de Raadt | |
2010-02-19 | have_arg matches buf so it is no longer necessary, spotted by Tim van der | Nicholas Marriott | |
Molen. | |||
2010-02-19 | copy mode uses the real screen as backing and if it is updated while copying, | Nicholas Marriott | |
strange things can happen. So, freeze reading from the pty while in copy mode. | |||
2010-02-18 | Our groff does not handle all cases of nested displays properly, so | Ingo Schwarze | |
resolve the contradiction in the manual whether it's allowed or not in favour of "not allowed" for now, shelving my diff to support nested displays in mandoc(1) for later consideration. Found by and unbreaking the build with mandoc(1). Feedback and OK jmc@ | |||
2010-02-18 | sync to release 1.9.15: | Ingo Schwarze | |
* corrected .Vt handling (spotted by Joerg Sonnenberger) * corrected .Xr argument handling (based on my patch) * removed \\ escape sequence (because it is for low-level roff only) * warn about trailing whitespace (suggested by jmc@) * -Txhtml support * and some general cleanup and doc improvements | |||
2010-02-17 | Make next-word stop at beginning of word even if it is at the start of the | Nicholas Marriott | |
line, from Micah Cowan. | |||
2010-02-17 | Man page additions/improvements, thanks to Robin Lee Powell. | Nicholas Marriott | |
2010-02-17 | Don't strip add newline if only copying part of wrapped line. Problem spotted | Nicholas Marriott | |
by and fix from Micah Cowan. | |||
2010-02-14 | "the the" | Jason McIntyre | |
2010-02-13 | Update to sudo 1.7.2p3 | Todd C. Miller | |
2010-02-13 | convert midiplay to sndio(7) so it can be used with soft synths, for | Alexandre Ratchov | |
instance. Now, the -f option sets the MIDI device (instead of the sequencer(4) device). The -d and -l options were removed. | |||
2010-02-11 | Add "N" key to search the opposite way from the last search (reverse of "n"), | Nicholas Marriott | |
from Micah Cowan. | |||
2010-02-11 | correct comment | Damien Miller | |
2010-02-11 | libarary -> library; | Jason McIntyre | |
2010-02-10 | pkcs#11 is no longer optional; improve wording; ok jmc@ | Markus Friedl | |
2010-02-10 | Clarify default status-right, from Seth Wright. | Nicholas Marriott | |
2010-02-09 | enable PKCS#11 code; ok djm | Markus Friedl | |
2010-02-09 | fix whitespace; from jmc@ | Markus Friedl | |
2010-02-09 | add manpage; ok djm@ | Markus Friedl | |
2010-02-09 | unbreak ChrootDirectory+internal-sftp by skipping check for executable shell | Damien Miller | |
when chrooting; reported by danh AT wzrd.com; ok dtucker@ | |||
2010-02-09 | constify the arguments to buffer_len, buffer_ptr and buffer_dump | Damien Miller | |
2010-02-09 | fix -Wall | Damien Miller | |
2010-02-09 | fallout from PKCS#11: unbreak -D | Damien Miller | |
2010-02-08 | tweak previous; ok markus | Jason McIntyre | |
2010-02-08 | obsolete | Markus Friedl | |