summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-11-26fix #ifdef before #define; ok markus@Damien Miller
2003-11-26Avoid a core dump on reading uninitiazed array locations.Otto Moerbeek
2003-11-26This is ISO C, use string concatenation, instead of bogus use of __CONCAT.Marc Espie
(hint: "a" and "b" can't be pasted as a valid C token...) okay millert@
2003-11-26Minor cleanup. Remove gratuitous use of __CONCAT that was neededTodd C. Miller
to avoid SCCS braindamage. Also use ANSI function headers while we are here. Based on a diff from espie@
2003-11-26multi-line literals are not ANSI C. And gcc3 complains about them.Marc Espie
2003-11-25ssh-add doesn't need to be a descendant of ssh-agent. Ok markus@, jmc@.Matthieu Herrb
2003-11-25obvious fix for gcc3.Marc Espie
2003-11-24typo from Michael Knudsen;Jason McIntyre
also, kill some .Pp's before displays, and add one after;
2003-11-24Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@Darren Tucker
2003-11-23from portable: rename clashing variable limit-> limit_rate; ok markus@Damien Miller
2003-11-23consistency PATH_MAX -> MAXPATHLEN; ok markus@Damien Miller
2003-11-23from portable - use sysconf to detect fd limit; ok markus@Damien Miller
2003-11-23Check getpass(3) return value. From Jared Yanovich <jjy2+ at pitt dot edu>Otto Moerbeek
ok henning@
2003-11-22Fix diff -q exit value which was broken in last commit.Todd C. Miller
2003-11-22madvise() -- take twoMichael Shalayeff
2003-11-22Revert the last change since it's broke make release.Alexander Yurchenko
2003-11-22:mod, simpler search patterns. Idea from NetBSD.Marc Espie
ok jmc@
2003-11-22the the typo. from rohee@Marc Espie
2003-11-21Simplified support for concatenated files; similar to what zlib does.Todd C. Miller
mickey@ OK
2003-11-21mark mmap()ed memory as sequentially accessedMichael Shalayeff
2003-11-21madvise(sequential) the mmap()ed file and plug an fd leak on mmap() failure; ↵Michael Shalayeff
millert@ ok
2003-11-21madvise() mmaped memory as sequentially accessed cutting user time almost in ↵Michael Shalayeff
half; millert@ ok
2003-11-21unexpand and delete whitespace at EOL; ok markus@Damien Miller
2003-11-21mixerctl.1:Jason McIntyre
- put SYNOPSIS in standard form - -n does not make sense with -q - adjust -width of option list - sort options - a clarity fix from snj att pobox dott com mixerctl.c: - fix spacing in usage() - sync usage() with SYNOPSIS
2003-11-21Fix broken assumption that a file must contain differences if files_differ()Todd C. Miller
fails. Fixes "diff -i" exit value. Problem found by Claudio Jeker.
2003-11-20build statically, to ease disaster recovery in some situations.Ted Unangst
ok david@ grange@ henning@ ian@ jakob@ lebel@ markus@ and possibly a few others.
2003-11-20remove -Werror from userland builds, to give us a chance toAnil Madhavapeddy
use more verbose warning options if desired. ok millert@, henning@, david@
2003-11-20ftp.1:Jason McIntyre
- simpler macros - sort options - some updates - remove some old groff stuff main.c: sync usage()
2003-11-20fix rounding errors; from andreas@Markus Friedl
2003-11-18unbreak fake authloop for non-existent users (my screwup). Spotted andDamien Miller
tested by dtucker@; ok markus@
2003-11-18-mdoc flex(1) man page;Jason McIntyre
examples style(9)'d by otto@
2003-11-18Correct check for authctxt->valid. ok djm@Darren Tucker
2003-11-17st.nicholas in nycMichael Shalayeff
2003-11-17aprelevka'' opens (new style)Michael Shalayeff
2003-11-17Modify xalloc so that it also takes err(3)-like arguments.Marc Espie
Write an xrealloc wrapper that works the same way, and use it as well. People who feel like it may want to add more explicit error messages to all the places m4 can fail allocating memory... okay tedu@
2003-11-17Document non-portable extensions:Otto Moerbeek
o boolean operators !, && and ||. o allow relational operators to appear in any expression, not just conditional expressions. help and ok jmc@
2003-11-17Implement non-portable extensions:Otto Moerbeek
o boolean operators !, && and ||. o allow relational operators to appear in any expression, not just conditional expressions.
2003-11-17A basic stack operation that is missing from the original dc (andOtto Moerbeek
GNU dc as well): drop ('R').
2003-11-17replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob.Markus Friedl
2003-11-17return error on msg send/receive failure (rather than fatal); ok markus@Damien Miller
2003-11-15preferred spellingTed Unangst
2003-11-15check getpass for NULL, missing fclose(), and a little style.Ted Unangst
from Jared Yanovich.
2003-11-15check getpass for NULL. from Jared Yanovich. ok otto@Ted Unangst
2003-11-14read(2) returns ssize_t, not size_t. spotted by Andrey Matveev.Vincent Labrecque
2003-11-14Add support for inflating multiple concatenated file like GNU gzip does.Todd C. Miller
Problem noticed by lebel@, OK mickey@
2003-11-14Implement new boolean operations 'N' (not), 'G' (equals), '(' (less)Otto Moerbeek
and '{' (less or equal). These operations push their result back to the stack. Used by soon to appear boolean operations in bc(1). man page tweaks and ok jmc@
2003-11-14The BN_add_word() bug has been squashed, so we don't need a workaroundOtto Moerbeek
any more.
2003-11-14cleanup and minor fixes for the client code; from Simon WilkinsonMarkus Friedl
2003-11-13When using print, do not leave garbage on the dc stack.Otto Moerbeek
2003-11-13Exponentiation operatator ^ is right associative.Otto Moerbeek