Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-02-01 | int atomicio -> ssize_t (for alpha). ok deraadt@ | David Leonard | |
2000-02-01 | Work-around for lame servers that return `19100' for a date. | Marc Espie | |
Based on NetBSD patch, slightly trimmed since we don't use the fractional part yet... | |||
2000-02-01 | oops, fix comment, too. | Markus Friedl | |
2000-02-01 | no need to extern int errno if errno.h is included | Theo de Raadt | |
2000-01-31 | delay close() of pty until the pty has been chowned back to root | Markus Friedl | |
2000-01-31 | remove unnecessary, ignored error. ok millert@ | David Leonard | |
2000-01-31 | massive indent pass | Theo de Raadt | |
2000-01-30 | Clean up a few issues with fsplit, including security of temp files. | Marc Espie | |
Thanks to Matthieu Herb, Paul Janzen, and Ted Scharlemann. | |||
2000-01-29 | remove #if 0'ed portion (not necessary due to use of getaddrinfo) | Jun-ichiro itojun Hagino | |
2000-01-28 | 1.6.2p1 | Todd C. Miller | |
2000-01-27 | er, oops, types must be same for multiple assignment | Theo de Raadt | |
2000-01-27 | deny login if shell does not exist or is not executable at all | Markus Friedl | |
make no-port-forwarding for RSA keys deny both -L and -R style fwding | |||
2000-01-27 | enable IPv6 support. | Jun-ichiro itojun Hagino | |
2000-01-26 | if yygrowstack() fails to allocate memory, free all yacc memory allocations ↵ | Theo de Raadt | |
and reset for future yyparse() calls... obscure eh | |||
2000-01-25 | Kludge to fix timestamp bug. | Marc Espie | |
2000-01-24 | allow '.' in usernames; from jedgar@fxp.org | Markus Friedl | |
2000-01-24 | do not connect() if request has been denied. | Markus Friedl | |
2000-01-24 | don't panic if client behaves strange. ok deraadt@ | Markus Friedl | |
2000-01-24 | first cut at indent.. more to come | Theo de Raadt | |
2000-01-24 | sudo 1.6.2 | Todd C. Miller | |
2000-01-23 | OpenSSH-1.2.2 | Markus Friedl | |
2000-01-22 | Some minor doc updates that should have gotten commited ages ago. | Todd C. Miller | |
2000-01-22 | getsockname() requires initialized tolen; andy@guildsoftware.com | Theo de Raadt | |
2000-01-22 | Add a couple of useful examples. | Aaron Campbell | |
2000-01-22 | ie. -> i.e., | Aaron Campbell | |
2000-01-21 | instead of blocking SIGINT, catch it ourselves, so that we can clean the | Theo de Raadt | |
tty modes up and kill ourselves -- instead of our process group leader (scp, cvs, ...) going away and leaving us in noecho mode. people with cbreak shells never even noticed.. | |||
2000-01-21 | Deal with getcwd() returning NULL. | Todd C. Miller | |
Problem noted by Oleg Safiullin <form@vell.nsc.ru> | |||
2000-01-21 | ip4 -> ipip | Angelos D. Keromytis | |
2000-01-21 | Deal with getcwd() returning NULL. This code is not currently | Todd C. Miller | |
compiled but dixing it now means that it won't get flagged again in a future audit. Noted by Oleg Safiullin <form@vell.nsc.ru> | |||
2000-01-20 | Use sysopen() when opening recover files. This is purely paranoia | Todd C. Miller | |
since we check that the filename matches '^recover' and hence the first character cannot play games with perl's magic open(). | |||
2000-01-20 | Fix problem pointed out by FreeBSD, regen temp file name each time, to | Marc Espie | |
avoid races. Make use of basic Unix semantics, namely you can unlink a file while holding open fd on the data. Avoid all the mess of having to track useless file names around. | |||
2000-01-20 | log with level log() not fatal() if peer behaves badly. | Markus Friedl | |
2000-01-20 | use getpeername() in packet_connection_is_on_socket(), fixes sshd -i; | Markus Friedl | |
from Holger.Trapp@Informatik.TU-Chemnitz.DE | |||
2000-01-20 | Default value for -s option is ARG_MAX - 4096, not - 2048; enami | Theo de Raadt | |
2000-01-19 | .MAIN is nothing special. | Marc Espie | |
Silently ignoring all commands but the first set in a normal dependency is a generic `feature' of make. | |||
2000-01-19 | Better summary line, in keeping with other *stat commands; from NetBSD | Paul Janzen | |
2000-01-18 | Repair duplicate word occurences; (as found by a Perl script sent to us from | Aaron Campbell | |
Tom Christiansen <tchrist@perl.com>). | |||
2000-01-18 | no need for poll.h; from bright@wintelcom.net | Markus Friedl | |
2000-01-18 | disable agent fwding for proto 1.3, remove abuse of auth-rsa flags. | Markus Friedl | |
2000-01-18 | fix user/1056, sshd keeps restrictions; dbt@meat.net | Markus Friedl | |
2000-01-18 | print IPv6 multicast groups on -ia. | Jun-ichiro itojun Hagino | |
align multicast addresses on output (broken on 1.15 -> 1.16). | |||
2000-01-18 | Use err, not errx when freopen() failes to get error string; form@openbsd.org | Todd C. Miller | |
Also, since the file may be user-supplied, don't just pass it as the first arg to errx() since it could have printf-style escapes in it. | |||
2000-01-17 | IPv6 support. netbsd PR 9199 with adaptation to NRL inpcb. | Jun-ichiro itojun Hagino | |
2000-01-16 | destroy keys earlier | Markus Friedl | |
2000-01-16 | split key exchange (kex) and user authentication (user-auth), ok: provos@ | Markus Friedl | |
2000-01-16 | Update to ncurses-5.0-20000115: | Todd C. Miller | |
+ additional fixes for non-bce terminals (handling of delete_character) to work when assume_default_colors() is not specified. + modify warning message from _nc_parse_entry() regarding extended capability names to print only if tic/infocmp/toe have the -v flag set, and not at all in ordinary user applications. Otherwise, this warning would be shown for screen's extended capabilities in programs that use the termcap interface. + modify use of _nc_tracing from programs such as tic so their debug level is not in the same range as values set by trace() function. + small panel header cleanup (patch by Juergen Pfeifer). | |||
2000-01-15 | typo; sotiris.vassilopoulos@betatech.gr via adejoode@zedz.net | Niels Provos | |
2000-01-15 | There is no need to waste short for holding EOF in the pushback buffer. | Marc Espie | |
Now that the input_file structure is sufficiently fleshed out, just stop EOF at the putback level, and make sure files at EOF STAY at EOF. | |||
2000-01-14 | show blackhole flag; ura@hiru.aoba.yokohama.jp | Theo de Raadt | |
2000-01-14 | sort options, from paskalis@di.uoa.gr; .Xr gzip 1 | Markus Friedl | |