Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-24 | OpenSSH_2.9.9 | Markus Friedl | |
2001-09-24 | Use setboolean for -h flag instead of casting things by hand. | Todd C. Miller | |
2001-09-24 | don't rely on <unistd.h> for getopt(3) extern variable declarations; | Kevin Steves | |
for portable. ok deraadt@ | |||
2001-09-23 | relax permission check for private key files. | Markus Friedl | |
2001-09-23 | new rijndael implementation | Markus Friedl | |
2001-09-23 | for cu, default to 9600 baud rate instead of 1200 | Peter Valchev | |
mention what the default is in the man page ok millert | |||
2001-09-21 | complete grep clone by harding@motd.ca; everything is there, but it is | Theo de Raadt | |
slow because libc regexp is slow. Anyone out there have the balls to sit down and optimize libc regexp? | |||
2001-09-21 | correct fork logic and rewrite for clarity, ok todd@ | Peter Stromberg | |
2001-09-20 | CheckMail removed. OKed stevesk@ | mouring | |
2001-09-20 | bug compat: request a dummy channel for -N (no shell) sessions + cleanup; ↵ | Markus Friedl | |
vinschen@redhat.com | |||
2001-09-20 | key_read returns now -1 or 1 | Markus Friedl | |
2001-09-20 | fix ClientAliveCountMax | Kevin Steves | |
2001-09-19 | don't advertise -V in usage; ok markus@ | Kevin Steves | |
2001-09-19 | missing -t in usage | Kevin Steves | |
2001-09-19 | Xref modload(8), not modstat(8). | Miod Vallat | |
2001-09-19 | use sizeof addr vs. SUN_LEN(addr) for sockaddr_un. Stevens blesses | Kevin 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-19 | add ClearAllForwardings ssh option and set it in scp and sftp; ok markus@ | Kevin Steves | |
2001-09-19 | key_read() now returns -1 on type mismatch, too | Markus Friedl | |
2001-09-19 | inline some very common putback/chrsave. Worth roughly 10% | Marc Espie | |
2001-09-19 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/ | |||
2001-09-19 | command=xxx applies to subsystem now, too | Markus Friedl | |
2001-09-19 | Define 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-19 | Fix a bug where ^@ wouldn't behave as expected when reading an ex | Peter Valchev | |
command from vi. From NetBSD, ok millert | |||
2001-09-18 | forgot to add -t handling. | Marc Espie | |
2001-09-18 | check strdup() rval | Todd C. Miller | |
2001-09-18 | better end-condition, fix tracing of dnl. | Marc Espie | |
2001-09-18 | Tracing facilities. Same style as gnu-m4, because it's mostly used for | Marc Espie | |
autoconf right now. | |||
2001-09-18 | instrumentation for tracing mode: macro expansion | Marc Espie | |
2001-09-18 | better gnu m4 emulation for dumpdef | Marc Espie | |
2001-09-18 | let dumpdef go thru dump_one_def for each def. | Marc Espie | |
2001-09-18 | let defn(builtin) work enough so that | Marc Espie | |
define(`newmacro', defn(builtin)) will work, as it should. | |||
2001-09-18 | One single point for all macros/builtin expansion. | Marc Espie | |
2001-09-18 | 8 bit clean look-ahead. | Marc Espie | |
2001-09-18 | Fix 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-18 | slightly buggy macros | Marc Espie | |
2001-09-18 | Make a private copy of pwd via pw_dup() since its contents can get | Todd C. Miller | |
clobbered later on. For some reason this only seems to affect YP. | |||
2001-09-17 | missing -B in usage string | Kevin Steves | |
2001-09-17 | Typo and grammar fixes, one from PR/2058 (Dennis Schwarz); ok millert@ | Paul Janzen | |
2001-09-17 | document flags for cu | Theo de Raadt | |
2001-09-17 | ensure that DV has a /dev/ in it | Theo de Raadt | |
2001-09-17 | handle names without / in them | Theo de Raadt | |
2001-09-17 | more versions suffering the SSH_BUG_DEBUG bug; | Markus Friedl | |
3.0.x reported by dbutts@maddog.storability.com | |||
2001-09-17 | don't send fake dummy packets on CR (\r) | Markus Friedl | |
bugreport from yyua@cs.sfu.ca via solar@@openwall.com | |||
2001-09-17 | try to fix agent-forwarding-backconnection-bug, as seen on HPUX, for example; | Markus Friedl | |
with Lutz.Jaenicke@aet.TU-Cottbus.DE, | |||
2001-09-17 | better error handling if you try to export a bad key to ssh.com | Markus Friedl | |
2001-09-17 | cleanup and document -1, -s and -S; ok markus@ | Kevin Steves | |
2001-09-17 | never keep a connection to the smartcard open. | Markus Friedl | |
allows ssh-keygen -D U while the agent is running; report from jakob@ | |||
2001-09-17 | u_char*/char* cleanup; ok markus@ | Kevin Steves | |
2001-09-17 | add -Fssh_config option; ok markus@ | Kevin Steves | |
2001-09-17 | Remove STATIC memory optimization. It's buggy (see regression test trip) | Marc Espie | |