summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-05-05Zap extra whitespace.Loganaden Velvindron
OK from djm@ and dtucker@
2014-05-03unbreak compression, by re-init-ing the compression code in theMarkus Friedl
post-auth child. the new buffer code is more strict, and requires buffer_init() while the old code was happy after a bzero(); originally from djm@
2014-05-03more tweaking; ok sthenJason McIntyre
2014-05-03remove unused variablesCharles Longeau
ok henning@
2014-05-02revert __bounded change; it causes way more problems for portable thanDamien Miller
it solves; pointed out by dtucker@
2014-05-01options first, then pager commands; also remove one non-standard Sh;Jason McIntyre
2014-05-01STANDARDS is no longer relevant to this page, so remove it; while here,Jason McIntyre
zap some trailing whitespace introduced in recent update
2014-05-01the beginning of removing more details from this page, since we now haveJason McIntyre
a separate more(1): it's a big page so i'm doing it in bits. in this commit, remove more stuff from SYNOPSIS, remove some cleverness from SYNOPSIS, and use consistent argument names;
2014-05-01update currency exchange rates;Jason McIntyre
2014-04-30UMAC can use our local fallback implementation of AES when OpenSSL isn'tChristian Weisgerber
available. Glue code straight from Ted Krovetz's original umac.c. ok markus@
2014-04-30tidy up SYNOPSIS, usage() and the options list; ok sthenJason McIntyre
2014-04-30New buffer API; the first installment of the conversion/replacementDamien Miller
of OpenSSH's internals to make them usable as a standalone library. This includes a set of wrappers to make it compatible with the existing buffer API so replacement can occur incrementally. With and ok markus@ Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew Dempsky and Ron Bowes for a detailed review.
2014-04-29fcntl.h is still needed here.Nicholas Marriott
2014-04-29Don't attempt to append a nul quote char to the filename. Should preventDarren Tucker
fatal'ing with "el_insertstr failed" when there's a single quote char somewhere in the string. bz#2238, ok markus@
2014-04-29Move nulling of variable next to where it's freed. ok markus@Darren Tucker
2014-04-29make compiling against OpenSSL optional (make OPENSSL=no);Markus Friedl
reduces algorithms to curve25519, aes-ctr, chacha, ed25519; allows us to explore further options; with and ok djm
2014-04-29re-add our own aesctr implementation; ok djm@Markus Friedl
2014-04-29re-add our own aesctr implementation; ok djm@Markus Friedl
2014-04-29Move traceroute6 to the attic, fully merged into traceroute.Florian Obser
2014-04-29bz#1818 - don't send channel success/failre replies on channels thatDamien Miller
have sent a close already; analysis and patch from Simon Tatham; ok markus@
2014-04-29Remove support for the obsolete (non-POSIX) "more -d" prompt.Todd C. Miller
This was a local change that was only enabled when the LESS_IS_MORE environment variable was set and not when invoked as "more". OK shadchin@ jmc@
2014-04-29fix a test for invalid timezonesJonathan Gray
oks from a bunch of people
2014-04-28Ignore IRIX6-compatible archive map on mips64 platform, since the mips64Miod Vallat
toolchain creates them. This lets nm -w correctly return 0 for valid archives. ok jasper@ deraadt@
2014-04-28check for integer overflows in custom allocs, okay jca@Marc Espie
2014-04-28buffer_get_string_ptr's return should be const to remindDamien Miller
callers that futzing with it will futz with the actual buffer contents
2014-04-27Improve error handling in dbopen(). If PRAGMA SQL statements fail,Ingo Schwarze
report the error, close the database, and return failure from dbopen(), such that the main program can recover and rebuild the database. As noticed by stsp@, this can happen when database files are accessible, but corrupt or in the wrong format, which will now automatically be repaired. Besides, use a safer idiom after sqlite3_open*() failure that also handles out-of-memory situations correctly, and do not forget to close the database after CREATE TABLE failure.
2014-04-27For LUNA88K, make sure the architecture name shown to the userIngo Schwarze
matches the architecture name required for man -S and apropos -S. Adjust the case of LUNA68K to match the case of LUNA88K. ok aoyama@
2014-04-27Fix library search order in our libtool.Vadim Zhukov
Before, libtool first searched all directories for .la files, and if search failed, switched to actual libraries (.so/.a). But the correct way is to check each directory first for .la, then for .so/.a. The problem was reported by ajacoutot@ who verified that the patch fixes his case and okay'ed the initial diff. And jasper@'s bulk uncovered a bug which is fixed now (verified by another bulk).
2014-04-26Kill the link to /usr/bin/page. OK henning@ jmc@ miod@ schwarze@Todd C. Miller
2014-04-26fix whitespaceStuart Henderson
2014-04-26Only remove queues from the TAILQ when the ticket changes; fixes PPS/BPSStuart Henderson
displays for queues in "systat q". From Arto Jonsson.
2014-04-26Link traceroute6 to traceroute, thus completing the merge.Florian Obser
I was originally sent on this little errand by deraadt@. OK sthen@, benno@ (Committing from a bus somewhere in germany on its way to berlin.)
2014-04-26Revert 1.11. That patch is not only not necessary, it is quite harmful now.Alexandr Shadchin
ok schwarze@
2014-04-25discussing terminfo is not needed; ok schwarzeJason McIntyre
2014-04-25Make more(1) POSIX compliant with respect to the -e option.Ingo Schwarze
By default, "more" now works like "less -e", and "more -e" now works like "less -E", and more never exits just because the file fits on the first screen, like "less -F" would. While documenting this, add some text to the DESCRIPTION explaining how paging works. That allows a very concise description of -e. code change ok millert@ manual page joint work with and ok jmc@
2014-04-25Fix a minor optimization i broke in bsd.lv rev. 1.163 on August 20, 2010:Ingo Schwarze
Do not bother looking into the hash table when the length of the macro already tells us it's invalid. No functional change. Noticed by jsg@, thanks!
2014-04-25Merge Less 458 plus local patchesAlexandr Shadchin
ok guenther@, ok jmc@ for man bits
2014-04-25Import of Less 458Alexandr Shadchin
ok guenther@
2014-04-25specifying ECHOCTL once is enoughJonathan Gray
ok nicm@
2014-04-25kill dugsong's debugging leftover; ok sthen, jsgMike Belopuhov
2014-04-25Reduce the verbosity of makewhatis -t:Ingo Schwarze
In the past, it always showed the title lines of the files processed. Now, it only shows them when called with -D. That is better because pkg_create calls makewhatis -t. It is also more consistent with -D behaviour in non- -t modes. Issue reported by ajacoutot@; ok espie@ ajacoutot@ jasper@.
2014-04-25be a bit clearer about what this page is; ok millert schwarzeJason McIntyre
2014-04-24Re-add rcsid, and switch back to our previous descriptions for -iDsym[=value]Stuart Henderson
and -iUsym which jmc and I find a bit easier to understand. ok jmc
2014-04-24Install separate more.1 instead of using a link from less.1.Todd C. Miller
Requested by jmc@
2014-04-24combine some notes in STANDARDS for consistency;Jason McIntyre
2014-04-24no more kinit(1);Jason McIntyre
2014-04-24Fix logic inversion when checking environment variables on theTodd C. Miller
command line against the blacklist. This is only a problem when env_reset is disabled. CVE 2014-0106
2014-04-24rm rwho xrTed Unangst
2014-04-24I have not eaten for days.Ted Unangst
And who says you will?
2014-04-24days since rwhod was useful: 5475Ted Unangst