summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-02-08more Va -> Cm fixes from Jan Stary <hans at stare.cz>, thanks!Alexandre Ratchov
2014-02-08copy the correct number of channels in join/expandAlexandre Ratchov
2014-02-08remove debug bits: dont fill with junk unused channelsAlexandre Ratchov
2014-02-08use the correct integer width in calls to AMSG_ISSET()Alexandre Ratchov
2014-02-07-Wold-style-declaration is not supported by gcc 3.Miod Vallat
2014-02-07remove some logging that makes ssh debugging output very verbose;Damien Miller
ok markus
2014-02-06in ssh_create_socket(), only do the getaddrinfo for BindAddress whenDamien Miller
BindAddress is actually specified. Fixes regression in 6.5 for UsePrivilegedPort=yes; patch from Corinna Vinschen
2014-02-05tweak synopsis: calling ssh-keygen without any arguments is fine; ok jmc@Christian Weisgerber
while here, fix ordering in usage(); requested by jmc@
2014-02-04remove brackets for -H: this information given is not secondary;Jason McIntyre
2014-02-04the first example produces 21 sections, not 20; ok sobradoJason McIntyre
2014-02-04delay lowercasing of hostname until right before hostnameDamien Miller
canonicalisation to unbreak case-sensitive matching of ssh_config; reported by Ike Devolder; ok markus@
2014-02-03fix memory leak; ECDSA_SIG_new() allocates 'r' and 's' for us, unlikeDamien Miller
DSA_SIG_new. Reported by Batz Spear; ok markus@
2014-02-02use a more specific description for EXIT STATUS than that provided by .Ex;Jason McIntyre
ok sobrado millert
2014-02-02style nit-picking on previous commit: keep apart declaration fromIgor Sobrado
initialization; use a variable name consistent with the rest of our tree.
2014-02-02fix some minor formatting glitches;Jason McIntyre
2014-02-02convert memset of potentially-private data to explicit_bzero()Damien Miller
2014-02-01note which languages are extensions; ok millertJason McIntyre
2014-02-01improve POSIX compliance by continuing to process the remaining fileIgor Sobrado
operands after not finding an input file. from the IEEE Std 1003.1-2008 (``POSIX.1'') rationale: "Unlike other utilities, some historical implementations of cut exit after not finding an input file, rather than continuing to process the remaining file operands. This behavior is prohibited by this volume of POSIX.1-2008, where only the exit status is affected by this problem." joint work with jmc@, who identified the compliance issue, and millert@ ok millert@, jmc@
2014-02-01fix an example; users column at who(1) has a minimum width of eight characters,Igor Sobrado
not sixteen characters. problem found by jmc@
2014-02-01update currency exchange rates;Jason McIntyre
2014-01-31replace most bzero with explicit_bzero, except a few that cna be memsetTed Unangst
ok djm dtucker
2014-01-31Break up and simplify screen_redraw_screen.Nicholas Marriott
2014-01-31Fix partial matches with xterm-keys on, from m0viefreak dot cm atNicholas Marriott
googlemail dot com.
2014-01-31Add \033[18t window operations from J Raynor.Nicholas Marriott
2014-01-30allow shutdown(2) syscall in sandbox - it may be called by packet_close()Damien Miller
from portable
2014-01-30fix various inconsistencies.Igor Sobrado
ok jmc@
2014-01-30STANDARDS: at.allow/deny is xsi (same as cron);Jason McIntyre
2014-01-29I'm a bit dyslexic. Found out by Jan Klemkow. Thanks.Marc Espie
2014-01-29Unbreak ftp progress meter after the introduction of the '-D' flagDavid Coppa
ok tedu@
2014-01-29document kbdinteractiveauthentication;Jason McIntyre
requested From: Ross L Richardson dtucker/markus helped explain its workings;
2014-01-29remove experimental, never-enabled JPAKE code; ok markus@Damien Miller
2014-01-29In the experimental, never-enabled JPAKE code: clear returned digest andDamien Miller
length in hash_buffer() for error cases; could lead to memory corruption later if EVP_Digest* fails. Pointed out by Mark Dowd
2014-01-29use kill(0, ...) instead of killpg(0, ...); on most operating systemsDamien Miller
they are equivalent, but SUSv2 describes the latter as having undefined behaviour; from portable; ok dtucker
2014-01-28Fix missing argument, stupid last minute changes...Nicholas Marriott
2014-01-28Allow replacing each of the many sets of separate foo-{fg,bg,attr}Nicholas Marriott
options with a single foo-style option. For example: set -g status-fg yellow set -g status-bg red set -g status-attr blink Becomes: set -g status-style fg=yellow,bg=red,blink The -a flag to set can be used to add to rather than replace a style. So: set -g status-bg red Becomes: set -ag status-style bg=red Currently this is fully backwards compatible (all *-{fg,bg,attr} options remain) but the plan is to deprecate them over time. From Tiago Cunha.
2014-01-28Remember the last active pane in the top-bottom or left-right cell soNicholas Marriott
that it can be restored when moving back to that cell with selectp -L/-R/etc. From Suraj N Kurapati.
2014-01-28rename digest.c to digest-openssl.c and add libc variant; ok djm@Markus Friedl
2014-01-28make description of gzip(1) exit status codes more accurate.Igor Sobrado
issue pointed out by jmc@, verified by me. ok jmc@
2014-01-28bit more info for the toplas article;Jason McIntyre
From: Jan Stary tweaked a bit by myself
2014-01-28make it clear that -LV are no ops; ok millertJason McIntyre
2014-01-28kill some bad Pa;Jason McIntyre
From: Jan Stary
2014-01-28fix typo: s/to/theAlexandre Ratchov
2014-01-28Remove section about server capability which was removedAlexandre Ratchov
long time ago. Use .Cm instead of .Va for argument parameters. From Jan Stary <hans at stare.cz>, thanks!
2014-01-27Merge start-server into kill-server.Nicholas Marriott
2014-01-27replace openssl MD5 with our ssh_digest_*; ok djm@Markus Friedl
2014-01-27replace openssl HMAC with an implementation based on our ssh_digest_*Markus Friedl
ok and feedback djm@
2014-01-27Remove the no-op flags -L and -V from compress(1), these optionsTodd C. Miller
come from GNU zip and they were never in compress(1) until we added gzip(1) support to it. Also remove -g flag from gzip(1) as it is non-standard and only makes sense in compress(1). Joint work with jmc@ and sobrado@. OK jmc@, sobrado@
2014-01-27remove the no-op flags -L and -V from compress(1), these optionsIgor Sobrado
come from GNU zip and they were never in compress(1) until we added gzip(1) support to it. joint work with jmc@ and millert@; millert@ will do the rest. ok jmc@, millert@
2014-01-26- document for uncompress and zcat exit status of 0 or >0 onlyJason McIntyre
- kill an unneccessary Pp that created double vertical space - mention that posix marks these apps xsi - add uncompress -V to the list of extensions - document that posix stipulates a limit of 14 for -b, even though it permits 15 and 16 ok sobrado millert
2014-01-25provide a mnemonic for -s;Jason McIntyre