summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-12-09Clear exit code when ssh -N is terminated with a SIGTERM. ok markus@Darren Tucker
2003-12-09rename keepalive to tcpkeepalive; the old name causes too muchMarkus Friedl
confusion; ok djm, dtucker; with help from jmc@
2003-12-09don't modify argv for ssh -o; similar to sshd.c 1.283Markus Friedl
2003-12-09fix -o and HUP; ok henning@Markus Friedl
2003-12-09make ClientKeepAlive work for ssh -N, too (no login shell requested).Markus Friedl
1) send a bogus channel request if we find a channel 2) send a bogus global request if we don't have a channel ok + test beck@
2003-12-09Prevent ssh-keygen -T from outputting moduli with a generator of 0, sinceDarren Tucker
they can't be used for Diffie-Hellman. Assistance and ok djm@
2003-12-09better description of yylval, from mickey@Jason McIntyre
2003-12-09install lex PSD;Jason McIntyre
the actual doc has been updated regarding current implementation of lex. I also replaced the tables with displays, for simplicity and because of formatting errors (unsupported macros); sanity check and ok mickey@
2003-12-09missing printf arg; from Alf SchlichtingMichael Shalayeff
2003-12-09Fixes based on a patch from Moritz Jodeit; mickey@ OKTodd C. Miller
o break out of inflate() when we hit an error o fix printf format #ifdef SMALL o add version string of nullopen.c to -V output o remove unnecessary initializations to 0 for variables cat and decomp o beautify -l output to make it line up with the heading
2003-12-09a few new entries from netbsdMichael Shalayeff
2003-12-09user err/warnMichael Shalayeff
2003-12-09use err/warn and better usage printMichael Shalayeff
2003-12-08MAP_FILE is the default and MAP_PRIVATE has to be given or produces evil ↵Michael Shalayeff
warnings in debug kernel
2003-12-08print requested group size in debug; ok djmMarkus Friedl
2003-12-07remove unused debugging #define templatesDamien Miller
2003-12-07remove duplicate chunkTheo de Raadt
2003-12-07m88k partsTheo de Raadt
2003-12-06Unbreak grepping for some patterns containing multiple dots. Fixes PR 3597.Otto Moerbeek
ok deraadt@ millert@
2003-12-04split the screen in multiple windows when more than one files are givenVincent Labrecque
on the command line ok deraadt
2003-12-04fix sign extension bug that broke meta key supportVincent Labrecque
from sra@hactrn.net
2003-12-03Append but not override COPTS.Alexander Yurchenko
ok espie@
2003-12-03Change how the line output from the 'h' command is formatted.Todd C. Miller
Previously if you had an ungodly number of messages the line could wrap the screen. We now format the line in a buffer and then only print as many characters as will fit instead of printing the parts piecemeal.
2003-12-02UDP encapsulation for ESP in transport mode (draft-ietf-ipsec-udp-encaps-XX.txt)Markus Friedl
ok deraadt@
2003-12-02use SSH_LISTEN_BACKLOG (=128) in listen(2).Markus Friedl
2003-12-02Fix a max recursion off-by-one.Otto Moerbeek
2003-12-02improvments from andreas@:Markus Friedl
* saner speed estimate for transfers that takes less than a second by rounding the time to 1 second. * when the transfer is finished calculate the actual total speed rather than the current speed which is given during the transfer
2003-12-02Describe long variable names, a non-portable extension.Otto Moerbeek
help and ok jmc@
2003-12-02o Introduce long variable names, a non-portable extension.Otto Moerbeek
o Make main program target left recursive. Reduces parse stack usage, making it possible to compile programs > 10000 lines.
2003-12-02Nothing in vprintf.c is actually used so don't bother compiling it.Todd C. Miller
OK drahn@
2003-12-01Use ${INSTALL} instead of install; from art's amd64 tree.Alexander Yurchenko
ok markus@
2003-12-01Format string fixes from art's amd64 tree.Alexander Yurchenko
ok rohee@ espie@
2003-12-01Allow for more registers using a 2 byte index. This feature isOtto Moerbeek
enabled by supplying the -x option on the command line. Allows long variable names in bc(1) (to appear soon). If no -x option is given, behave exactly as before. ok jmc@
2003-12-01Allow for more registers using a 2 byte index. This feature isOtto Moerbeek
enabled by supplying the -x option on the command line. Allows long variable names in bc(1) (to appear soon). If no -x option is given, behave exactly as before.
2003-11-30- .Sh WARNINGS -> standard .Sh CAVEATSJason McIntyre
- tidy up AUTHORS - standard section order - kill whitespace at EOL
2003-11-30- document LESSKEY_SYSTEM and /etc/syslessJason McIntyre
- add ENVIRONMENT and FILES sections - .Sh WARNINGS -> standard .Sh CAVEATS - simplify SYNOPSIS - kill whitespace at EOL - some macro cleanup - standard section order
2003-11-29save the previous undo position as an offset in the buffer instead ofVincent Labrecque
a line/offset pair
2003-11-28remove "or uninstrumented" from "unknown or uninstrumented protocol";Jason McIntyre
simplified by marc@ and ok millert@;
2003-11-28- some fixes from PR 1446Jason McIntyre
- much simpler groff macros - sync SYNOPSIS with reality - document which options are broken (-bap, -ip, -ln, -sob) - remove groff macros - document defaults - document -lcn Together with pjanzen's fixes (rev. 1.10), fixes PR 1446
2003-11-28netstat.1:Jason McIntyre
- In SYNOPSIS, -a goes with interface display, not -s - In SYNOPSIS, -i and -I are mutually exclusive - expand -a description (shows multicast with interface display) - expand -b and -d descriptions and fix parenthesis typo - consistently refer to multicast (not Multicast) and MTU (not mtu) - expand -I description (interaction with -a) - two missing full stops - update SEE ALSO main.c: - sync with SYNOPSIS
2003-11-27fix prontf arguments and a typoHenning Brauer
From: Erick Borsboom <erick@bonzai.space-ei.nl>
2003-11-27fix printf arguments and two typos in commentsHenning Brauer
From: Erick Borsboom <erick@bonzai.space-ei.nl>
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;