summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
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
2003-11-12make verb agree with subject, and kill some whitespace;Jason McIntyre
2003-11-12kill some .Pp's before displays;Jason McIntyre
ok otto@
2003-11-12update SSHFP validation. ok markus@Jakob Schlyter
2003-11-12When called with -q, pass -q to ssh; suppresses SSH2 banner. ok markus@Darren Tucker
2003-11-11Some syntactic sugar (all non-portable extensions):Otto Moerbeek
- a line comment, starting with # - opening brace of define statement may be on next line - return expression, equivalent to return (expression) tweaks and ok jmc@
2003-11-11Some syntactic sugar (all non-portable extensions):Otto Moerbeek
- a line comment, starting with # - opening brace of define statement may be on next line - return expression, equivalent to return (expression) tweaks and ok jmc@
2003-11-11Some syntactic sugar (all non-portable extensions):Otto Moerbeek
- a line comment, starting with # - opening brace of define statement may be on next line - return expression, equivalent to return (expression)
2003-11-11Describe new 'print' statement plus some tweaks.Otto Moerbeek
ok jmc@
2003-11-11Document new 'print' statement, plus some tweaks.Otto Moerbeek
help and ok jmc@
2003-11-11Implement `print' statement, a non-portable extension.Otto Moerbeek
2003-11-10c2 cannot be const as it produces all kinds of conflictsMichael Shalayeff
2003-11-10Din't print the "No newline at end of file" to inline (ie: to stdout)Todd C. Miller
for edit scripts. Instead, print it to stderr. This matches the GNU diff behavior and fixes a problem with RCS and files with no trailing newline. tedu@ OK
2003-11-10constify. ok markus@ & djm@Jakob Schlyter
2003-11-09cosmetic change; don't put an ending semicolon on the same line asTodd C. Miller
a for() loop.
2003-11-09Flush after 'n' operator.Otto Moerbeek
2003-11-09Typos in comments from Jared Yanovich <jjy2+ at pitt dot edu>Otto Moerbeek
2003-11-09Introduce `last' as a synonym for `.' and document them.Otto Moerbeek
2003-11-09better boundary placement.Vincent Labrecque
there should be no more problems with inserting files now...
2003-11-09fix a bug i introduced in -r1.19, we should still use the current bufferVincent Labrecque
to test for the end of circular lists.
2003-11-09remove the only use of the hackish undo_add_custom function.Vincent Labrecque
2003-11-09proper test for circular list traversal, and nul-terminate strings forVincent Labrecque
safety.
2003-11-09fix up terminal correctly on panic (keeps terminal state correct whenVincent Labrecque
started with an invalid $TERM) spotted by deraadt
2003-11-09remove unused structure elementVincent Labrecque
2003-11-09fix the undo record size for insert-file so we do not get an extra byteVincent Labrecque
2003-11-09knfVincent Labrecque
2003-11-08typos from Jonathon Gray;Jason McIntyre
2003-11-08remove unused variable (pw). ok djm@Jakob Schlyter
2003-11-07Check to make sure that the packet was received on a carp-enabled interface.Ryan Thomas McBride
Pointed out by Marco Pfatschbacher, ok mickey@
2003-11-07adress -> address, and a few more; all from Jonathon Gray;Jason McIntyre
(mvme68k/mvme88k) vs.c and (vax) if_le.c ok miod@ isakmpd ones ok ho@
2003-11-07hppa is bigendianMichael Shalayeff
2003-11-07prevent overflow, see freebsd r1.32. also, do nicer reallocs.Ted Unangst
ok millert@ otto@
2003-11-06Describe non-portable extension # (comment), n (print w/o newline),Otto Moerbeek
and a (byte to char). Tweaks and ok jmc@
2003-11-06Implement non-portable extension # (comment), n (print w/o newline),Otto Moerbeek
and a (byte to char).