summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2017-01-08Fix an assertion failure caused by \z\[u00FF] with -Tps/-Tpdf.Ingo Schwarze
Reported by jsg@ after an afl(1) run long ago.
2017-01-08style: missing blank between case statement and label;Ingo Schwarze
from Tiago Silva <tiagofilipesilva at icloud dot com> long ago
2017-01-08Tolerate bare tabs in SYNOPSIS .Cd for now.Ingo Schwarze
It's used in half a dozen pages. Even though i have been thinking about it for years, i still can't suggest anything better. The false positives are annoying.
2017-01-08Stricter validation of the NAME section, in particular:Ingo Schwarze
- require a comma between names - reject all other text nodes - reject all empty Nm below NAME, not only in the leading position - reject Nm after Nd
2017-01-07Add note about ccc and initc so people who want it can see it isNicholas Marriott
possible.
2017-01-07Add support for the OSC 4 and OSC 104 palette setting escape sequences,Nicholas Marriott
from S Gilles.
2017-01-07-#endif /* !SMALL */Theo Buehler
+#endif /* !NOSSL */
2017-01-06keep the tokens list sorted;Jason McIntyre
2017-01-06Nits found with clang.Nicholas Marriott
2017-01-06Incremental search in copy mode (on for emacs keys by default) - muchNicholas Marriott
the same as normal searching but updates the cursor position and marked search terms as you type. C-r and C-s in the prompt repeat the search, once finished searching (with Enter), N and n work as before.
2017-01-06fix previousDamien Miller
2017-01-06show a useful error message when included config files can't beDamien Miller
opened; bz#2653, ok dtucker@
2017-01-06sshd_config is documented to set GSSAPIStrictAcceptorCheck=yes byDamien Miller
default, so actually make it do this. bz#2637 ok dtucker
2017-01-06Avoid confusing error message when attempting to use ssh-keyscan builtDamien Miller
without SSH protocol v.1 to scan for v.1 keys; bz#2583
2017-01-06Re-add '%k' token for AuthorizedKeysCommand which was lost during theDarren Tucker
re-org in rev 1.235. bz#2656, from jboning at gmail.com.
2017-01-06sort options list; the same as jmc@ did in man.1 rev. 1.18Ingo Schwarze
2017-01-05sort options list;Jason McIntyre
2017-01-05Highlight all occurrences of search string after searching in copy mode.Nicholas Marriott
2017-01-04Avoid an out of bounds read when the environment variable LESSBINFMTTodd C. Miller
is set to "*". Patch from Tobias Stoeckmann. OK tb@
2017-01-04Fix a crash when "sort -m" is given no files. From Julien Ramseier.Todd C. Miller
2017-01-04If find(1) may end up calling execve(2), it needs "proc exec" in additionTheo Buehler
to its other promises. Previously, find ran unpledged if the -exec{,dir} or -ok primaries were specified: the tame(2) calls for find(1) were added a few days before the "exec" promise was implemented and these code paths were never revisited. ok millert
2017-01-04unbreak Unix domain socket forwarding for root; ok markus@Damien Miller
2017-01-04relax PKCS#11 whitelist a bit to allow libexec as well as libDamien Miller
directories.
2017-01-03tweak previous;Jason McIntyre
2017-01-03consistently spell ASN.1;Jason McIntyre
2017-01-03remove unused variable repllen.Ted Unangst
i tried to see if it could be useful, but this function is kinda crazy. from Julien Ramseier
2017-01-03add -delete option which can simplify the common case of wanting to deleteTed Unangst
lots of files without the arcane -exec or error prone xargs. code from freebsd. ok millert
2017-01-03Add a "-w connect_timeout" option in support of URL-fetching. This allowsTheo de Raadt
slow / failing connects to be identified. The install script needs this functionaly. ok jca rpe millert
2017-01-03Assert we're not freeing buffers we didn't allocate (DEBUG mode).Alexandre Ratchov
2017-01-03Log play volume together with other play parameters.Alexandre Ratchov
2017-01-03Sync utils.c and utils.h to sndiod.Alexandre Ratchov
2017-01-03Many typos in comments. From Michael W. Bombardieri. Thanks.Alexandre Ratchov
2017-01-03Use a goto to factor all calls to close() when listen_in() returnsAlexandre Ratchov
an error. From Michael W. Bombardieri. Thanks.
2017-01-03check number of entries in SSH2_FXP_NAME response; avoidsDamien Miller
unreachable overflow later. Reported by Jann Horn
2017-01-02Escape backspace for capture-pane -P, from George Nachman.Nicholas Marriott
2017-01-02tweak previous;Jason McIntyre
2017-01-02update currency exchange rates;Jason McIntyre
2017-01-02envlist and arglist are both string lists; simplifyTed Unangst
ok benno
2017-01-01Document (a few) differences from the GNU one.Vadim Zhukov
(with hope for jmc@ come & fix my bad wording)
2017-01-01Hyphenate compound adjectives 'up-to-date', 'out-of-date' and 'well-known'Theo Buehler
if they precede the noun and omit hyphens otherwise. ok tj
2016-12-30Use explicit_bzero() to clear the buffer used when the user retypesTodd C. Miller
the new password. From isk AT ingve DOT org
2016-12-30fix deadlock when keys/principals command produces a lot of outputDamien Miller
and a key is matched early; bz#2655, patch from jboning AT gmail.com
2016-12-30restore a not so redundant test. loopcount = -1 is a significant indicatorTed Unangst
to prevent printing the calculating message over and over. from Hugo Villeneuve
2016-12-30Display details of the server ephemeral key, based on OpenSSL.Joel Sing
ok doug@
2016-12-30Expand ASN1_ITEM_rptr macros here as well... used with NETSCAPE_X509 of allJoel Sing
things...
2016-12-30Stop using M_PKCS12_* compatibility macros here as well.Joel Sing
2016-12-30Change the xterm-keys option to default to on, so that tmux willNicholas Marriott
generate xterm(1) escape sequences for function keys with modifiers. With the option off most of these keys are ignored by default, except for ctrl + arrows which use a variant that nothing else seems to use and I don't remember why we chose. The xterm escape sequences are now the most common. Prompted by a question from mpi@.
2016-12-29it has been six months and two days... remove keepenv { obsolete } syntaxTed Unangst
2016-12-28fix the remaining cases of .Xr with only one argumentIngo Schwarze
2016-12-28spelling fix;Jason McIntyre