Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-13 | Rename s/safile/siofile/g, missed when libsa was renamed to | Alexandre Ratchov | |
libsndio. Fixes crashes in full-duplex mode on vax and hp300. | |||
2010-01-13 | don't append a space after inserting a completion of a directory (i.e. | Damien Miller | |
a path ending in '/') for a slightly better user experience; ok dtucker@ | |||
2010-01-13 | avoid run-time failures when specifying hostkeys via a relative | Damien Miller | |
path by prepending the cwd in these cases; bz#1290; ok dtucker@ | |||
2010-01-13 | support '-h' (human-readable units) for sftp's ls command, just like | Damien Miller | |
ls(1); ok dtucker@ | |||
2010-01-13 | Make HostBased authentication work with a ProxyCommand. bz #1569, patch | Darren Tucker | |
from imorgan at nas nasa gov, ok djm@ | |||
2010-01-13 | Ignore and log any Protocol 1 keys where the claimed size is not equal to | Darren Tucker | |
the actual size. Noted by Derek Martin, ok djm@ | |||
2010-01-13 | Fix a couple of typos/mispellings in comments | Darren Tucker | |
2010-01-12 | Update to ncurses 5.7, with local changes reapplied. | Nicholas Marriott | |
This is around eight years worth of changes (previously we were around ncurses 5.2), too many to list - many bug fixes and also a few new functions. A major bump for libcurses, libpanel, libform and libmenu. ok deraadt | |||
2010-01-12 | save errno wrapping in a signal handler | Theo de Raadt | |
2010-01-12 | check for bogus clock ticks sent by the device; helps tracking | Alexandre Ratchov | |
bugs in device drivers. | |||
2010-01-12 | When attaching a new stream, if the "extra" latency is zero, then | Alexandre Ratchov | |
don't trigger a zero-length clock tick. Fixes duplicate start ticks seen by full-duplex clients. | |||
2010-01-12 | Add explicit stat so we reliably detect nologin with bad perms. ok djm markus | Darren Tucker | |
2010-01-12 | two corrections from David A. Holland (netbsd -r1.24 of calendar.history); | Jason McIntyre | |
2010-01-12 | add a buffer_get_string_ptr_ret() that does the same as | Damien Miller | |
buffer_get_string_ptr() but does not fatal() on error; ok dtucker@ | |||
2010-01-12 | Do not allow logins if /etc/nologin exists but is not readable by the user | Darren Tucker | |
logging in. Noted by Jan.Pechanec at Sun, ok djm@ deraadt@ | |||
2010-01-12 | delete with extreme prejudice a debug() that fired with every keypress; | Damien Miller | |
ok dtucker deraadt | |||
2010-01-12 | avoid spinning when fd passing on nonblocking sockets by calling poll() | Damien Miller | |
in the EINTR/EAGAIN path, much like we do in atomicio; ok dtucker@ | |||
2010-01-12 | Fix bug introduced in r1.78 (incorrect brace location) that broke key auth. | Darren Tucker | |
Patch from joachim joachimschipper nl. | |||
2010-01-11 | key should be an int not a char. | Nicholas Marriott | |
2010-01-11 | When resuming from suspend, prime play buffers with silence, | Alexandre Ratchov | |
otherwise the client would underrun by more than its own buffer size, which currently is not allowed (causes the client to deadlock). Set the minimum client buffer size to two blocks. Single block buffers don't work properly yet. with help from jakemsr | |||
2010-01-11 | when converting keys, truncate key comments at 72 chars as per RFC4716; | Damien Miller | |
bz#1630 reported by tj AT castaglia.org; ok markus@ | |||
2010-01-11 | "default" routes need a mask of 0 too. | David Gwynne | |
from and ok claudio@ | |||
2010-01-11 | Do not prompt for a passphrase if we fail to open a keyfile, and log the | Darren Tucker | |
reason the open failed to debug. bz #1693, found by tj AT castaglia org, ok djm@ | |||
2010-01-11 | Add a 'netcat mode' (ssh -W). This connects stdio on the client to a single | Darren Tucker | |
port forward on the server. This allows, for example, using ssh as a ProxyCommand to route connections via intermediate servers. bz #1618, man page help from jmc@, ok markus@ | |||
2010-01-10 | Add traces to help tracking subtle timing bugs often causing | Alexandre Ratchov | |
underuns and overruns; such bugs are hard to debug with ktrace or a debugger. They are also handy to debug or monitor code using aucat. To enable traces, compile aucat with ``make DEBUG=-DDEBUG'' and use the -d option multiple times. ok jakemsr | |||
2010-01-10 | remove references to docs we no longer install; | Jason McIntyre | |
2010-01-10 | Output a debug if we can't open an existing keyfile. bz#1694, ok djm@ | Darren Tucker | |
2010-01-10 | Add ChrootDirectory to sshd.c test-mode output | Darren Tucker | |
2010-01-09 | Remove RoutingDomain from ssh since it's now not needed. It can be replaced | Darren Tucker | |
with "route exec" or "nc -V" as a proxycommand. "route exec" also ensures that trafic such as DNS lookups stays withing the specified routingdomain. For example (from reyk): # route -T 2 exec /usr/sbin/sshd or inherited from the parent process $ route -T 2 exec sh $ ssh 10.1.2.3 ok deraadt@ markus@ stevesk@ reyk@ | |||
2010-01-09 | Afer sshd receives a SIGHUP, ignore subsequent HUPs while sshd re-execs | Darren Tucker | |
itself. Prevents two HUPs in quick succession from resulting in sshd dying. bz#1692, patch from Colin Watson via Ubuntu. | |||
2010-01-09 | Prevent sftp from derefing a null pointer when given a "-" without a command. | Darren Tucker | |
Also, allow whitespace to follow a "-". bz#1691, path from Colin Watson via Debian. ok djm@ deraadt@ | |||
2010-01-09 | Remove a PRIu64 format string that snuck in with roaming. ok djm@ | Darren Tucker | |
2010-01-09 | quell tc[gs]etattr warnings when forcing a tty (ssh -tt), since we | Damien Miller | |
usually don't actually have a tty to read/set; bz#1686 ok dtucker@ | |||
2010-01-09 | bad place to forget a comma... | Jason McIntyre | |
2010-01-09 | Plug fd leak in lg_incl(). Fix by Igor Zinovik, OK beck@ | Claudio Jeker | |
2010-01-09 | tweak language | Damien Miller | |
2010-01-09 | add a 'read-only' mode to sftp-server(8) that disables open in write mode | Damien Miller | |
and all other fs-modifying protocol methods. bz#430 ok dtucker@ | |||
2010-01-08 | Fix two warnings: possibly used unitialized and use a nul byte instead of | Darren Tucker | |
NULL pointer. ok djm@ | |||
2010-01-08 | $OpenBSD$ not $Id$ | Nicholas Marriott | |
2010-01-08 | Don't leak memory after strdup() in makedirs(). | Owain Ainsworth | |
From Igor Zinovik; thanks! ok stsp@, millert@ | |||
2010-01-08 | mouse-select-pane has to redraw the borders now too. | Nicholas Marriott | |
2010-01-07 | New command, join-pane, to split and move an existing pane into the space (like | Nicholas Marriott | |
splitw then movep, or the reverse of breakp). | |||
2010-01-07 | Fix this properly. | Nicholas Marriott | |
2010-01-07 | Don't return the root cell if the string doesn't match. | Nicholas Marriott | |
2010-01-07 | Use the specified pane for size calculations. Doh. | Nicholas Marriott | |
2010-01-07 | Change split-window to accept a pane target (it should be split-pane but | Nicholas Marriott | |
renaming the command would be annoying). | |||
2010-01-06 | Correctly clear 256-colour flag for aixterm colours. | Nicholas Marriott | |
2010-01-05 | Make the way .wav files are handled closer to the way sockets are | Alexandre Ratchov | |
handled, which is conceptually simpler. No behaviour changes. | |||
2010-01-04 | Stop installing many of the incredibly dated and un-authoritative share/doc | Theo de Raadt | |
files. If any information found in these documents is worthwhile and you miss it, please make the time to work it into the manual pages (which people actually do read). ok guenther | |||
2010-01-04 | bz#1566 don't unnecessarily dup() in and out fds for sftp-server; ok markus@ | Damien Miller | |