summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-09-20CheckMail removed. OKed stevesk@mouring
2001-09-20bug compat: request a dummy channel for -N (no shell) sessions + cleanup; ↵Markus Friedl
vinschen@redhat.com
2001-09-20key_read returns now -1 or 1Markus Friedl
2001-09-20fix ClientAliveCountMaxKevin Steves
2001-09-19don't advertise -V in usage; ok markus@Kevin Steves
2001-09-19missing -t in usageKevin Steves
2001-09-19Xref modload(8), not modstat(8).Miod Vallat
2001-09-19use sizeof addr vs. SUN_LEN(addr) for sockaddr_un. Stevens blessesKevin Steves
this and we do it this way elsewhere. this helps in portable because not all systems have SUN_LEN() and sockaddr_un.sun_len. ok markus@
2001-09-19add ClearAllForwardings ssh option and set it in scp and sftp; ok markus@Kevin Steves
2001-09-19key_read() now returns -1 on type mismatch, tooMarkus Friedl
2001-09-19inline some very common putback/chrsave. Worth roughly 10%Marc Espie
2001-09-19occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/
2001-09-19command=xxx applies to subsystem now, tooMarkus Friedl
2001-09-19Define ENTIRE_LINE to be -1 instead of 0 because we may want to copy 0 ↵Peter Valchev
characters, and use ENTIRE_LINE instead of hardcoding 0 in a few places. Fixes a bug when dw on an empty line would delete only the empty line, but copy the next line too. From NetBSD, ok millert
2001-09-19Fix a bug where ^@ wouldn't behave as expected when reading an exPeter Valchev
command from vi. From NetBSD, ok millert
2001-09-18forgot to add -t handling.Marc Espie
2001-09-18check strdup() rvalTodd C. Miller
2001-09-18better end-condition, fix tracing of dnl.Marc Espie
2001-09-18Tracing facilities. Same style as gnu-m4, because it's mostly used forMarc Espie
autoconf right now.
2001-09-18instrumentation for tracing mode: macro expansionMarc Espie
2001-09-18better gnu m4 emulation for dumpdefMarc Espie
2001-09-18let dumpdef go thru dump_one_def for each def.Marc Espie
2001-09-18let defn(builtin) work enough so thatMarc Espie
define(`newmacro', defn(builtin)) will work, as it should.
2001-09-18One single point for all macros/builtin expansion.Marc Espie
2001-09-188 bit clean look-ahead.Marc Espie
2001-09-18Fix regexp substitution.Marc Espie
- `vi rule' needs a pointer, because we must distinguish matches as the string position changes. - ^ should match only at beginning of line. - ^ should match at all beginnings of line.
2001-09-18slightly buggy macrosMarc Espie
2001-09-18Make a private copy of pwd via pw_dup() since its contents can getTodd C. Miller
clobbered later on. For some reason this only seems to affect YP.
2001-09-17missing -B in usage stringKevin Steves
2001-09-17Typo and grammar fixes, one from PR/2058 (Dennis Schwarz); ok millert@Paul Janzen
2001-09-17document flags for cuTheo de Raadt
2001-09-17ensure that DV has a /dev/ in itTheo de Raadt
2001-09-17handle names without / in themTheo de Raadt
2001-09-17more versions suffering the SSH_BUG_DEBUG bug;Markus Friedl
3.0.x reported by dbutts@maddog.storability.com
2001-09-17don't send fake dummy packets on CR (\r)Markus Friedl
bugreport from yyua@cs.sfu.ca via solar@@openwall.com
2001-09-17try to fix agent-forwarding-backconnection-bug, as seen on HPUX, for example;Markus Friedl
with Lutz.Jaenicke@aet.TU-Cottbus.DE,
2001-09-17better error handling if you try to export a bad key to ssh.comMarkus Friedl
2001-09-17cleanup and document -1, -s and -S; ok markus@Kevin Steves
2001-09-17never keep a connection to the smartcard open.Markus Friedl
allows ssh-keygen -D U while the agent is running; report from jakob@
2001-09-17u_char*/char* cleanup; ok markus@Kevin Steves
2001-09-17add -Fssh_config option; ok markus@Kevin Steves
2001-09-17Remove STATIC memory optimization. It's buggy (see regression test trip)Marc Espie
2001-09-17make vi exit if it can't create a temp file. From NetBSD, ok millertPeter Valchev
2001-09-16remove some unneeded includes; ok millertPeter Valchev
2001-09-16special-case MACRO (without parens) recognition, so that $# is set to 0Marc Espie
as it should.
2001-09-16Fix \\ in recognition in patsubst: must advance beyond it as well.Marc Espie
2001-09-16Optimize space-eating loop since we've already checked that theTodd C. Miller
first char is a space. Patch from sacrificial-spam-address@horizon.com
2001-09-161) In skin(), only add a space after a comma if there is actually a spaceTodd C. Miller
in the input buffer. This prevents a rare buffer overflow on very long header lines where one or more entries has a comment in it but the entries have no space after the comma *and* the amount of extra space needed to add a space after each comma is greater than the length of the comments that will be removed. This is debian bug #108677 2) In skin(), use a temporary variable in the realloc() and don't die if realloc() fails since its only purpose is to shrink the buffer, not expand it (and thus is not fatal).
2001-09-16calls krb_afslog() after setting $HOME; mattiasa@e.kth.se; fixes pr 1943Markus Friedl
2001-09-16%llu instead of %qu and explicit casts.Artur Grabowski