summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
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
2014-01-25let EXIT STATUS breathe;Jason McIntyre
2014-01-25dh_need needs to be set to max(seclen, blocksize, ivlen, mac_len)Markus Friedl
ok dtucker@, noted by mancha
2014-01-25note that posix marks this utility xsi;Jason McIntyre
millert, guenther, sobrado, and schwarze have all contributed to how to word this...
2014-01-25cal appeared in v1; found by millertJason McIntyre
ok sobrado
2014-01-25Add a special case for the DH group size for 3des-cbc, which has anDarren Tucker
effective strength much lower than the key size. This causes problems with some cryptlib implementations, which don't support group sizes larger than 4k but also don't use the largest group size it does support as specified in the RFC. Based on a patch from Petr Lautrbach at Redhat, reduced by me with input from Markus. ok djm@ markus@
2014-01-25Fix printing of icps_toofreq unlike IPv6 the IPv4 value is just a u_long.Claudio Jeker
Found by csszep (at) gmail.
2014-01-24Improve formatting of broken blocks in -Tman,Ingo Schwarze
somewhat similar to what mdoc_term.c already does for -Tascii.
2014-01-24exit1() needs to do a final aggregation of the thread's [us]ticksPhilip Guenther
and runtime to the process totals. Also, add ktracing of struct rusage in wait4() and getrusage(). problem pointed out by tedu@ ok deraadt@
2014-01-23hardware cecksummed counters -> software checksummed countersHenning Brauer
2014-01-23tweak previous;Jason McIntyre
2014-01-23Add -D shorttitle support, so that the progress meter can show some sortTheo de Raadt
of reason why it is processing a certain file. This will be used by the installer for that purpose. ok krw rpe
2014-01-22Support paste key in copy mode input (for search etc). Also clamp lengthNicholas Marriott
to screen width.
2014-01-22replace sensitive memsets with explicit_bzeroTed Unangst
2014-01-22Implement the \: (optional line break) escape sequence,Ingo Schwarze
documented in the Ossanna-Kernighan-Ritter troff manual and also supported by groff. Missing feature reported by Steffen Nurpmeso <sdaoden at gmail dot com>.
2014-01-22Merge server-info into show-messages and remove some not useful output.Nicholas Marriott
2014-01-22Do not permit periods in session names (colons are already banned). FromNicholas Marriott
J Raynor.
2014-01-22Only exit copy mode at the bottom if no selection in progress, fromNicholas Marriott
Benoit Pierre.
2014-01-22fix an fd leakJonathan Gray
ok krw@ deraadt@
2014-01-22fix fd leaks in error pathsJonathan Gray
ok krw@ phessler@
2014-01-22fix a leak in an error pathJonathan Gray
ok krw@ deraadt@
2014-01-22fix leaksJonathan Gray
ok krw@ deraadt@ benno@ phessler@
2014-01-21fulfilling theo's wishesHenning Brauer
2014-01-21Treat the line after .Cd as a single argument.Ingo Schwarze
This doesn't hurt normal manual display and makes the mandocdb(8) database more useful.
2014-01-21obvious .Pa fixes; found with mandocdb(8)Ingo Schwarze
2014-01-20Keep words after .Ic together in a single argument.Ingo Schwarze
This doesn't hurt normal manual display and makes the mandocdb(8) database more useful.
2014-01-20Obvious .Xr fixes, found while testing mandocdb(8).Ingo Schwarze