Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-28 | if aucat is resumed (after suspend), kernel buffers are empty, thus write() | Alexandre Ratchov | |
syscall succedes and consumes aucat buffers until kernel buffers are full. If aucat buffers are smaller than kernel ones, they will underrun, and aucat will terminate, since underruns are not handled yet. This changes is an improvement until SIGCONT handler is implemented. The correct approach is to add a handler for SIGCONT to: call dev_stop(), reset all buffers, bring play and record in sync, fill play buffers and call dev_start(). ok jakemsr | |||
2008-05-26 | "usage:" is lowercase; synchronize synopsis and usage. | Igor Sobrado | |
2008-05-26 | signpost encodings and formats a little better; | Jason McIntyre | |
2008-05-26 | put -q in the right place; | Jason McIntyre | |
2008-05-26 | add -q option which enables "quiet" operation. | Jacob Meuser | |
ok ratchov@ | |||
2008-05-25 | Fix breakage introduced in rev 1.8 wrt rdisting symlinks. Push the | Todd C. Miller | |
mkstemp() down into recvfile() and use mktemp() for recvlink(). OK okan@ | |||
2008-05-25 | give argument to LIST_END(), don't use variable lenght arrays as last | Alexandre Ratchov | |
field of structures. from deraadt@ | |||
2008-05-24 | typo. | Igor Sobrado | |
2008-05-24 | Enclose an informational message in a verbose check. | Pierre-Yves Ritschard | |
From Alexander Hall <alexander@beard.se> ok henning@, ``I suppose so'' deraadt@ | |||
2008-05-23 | various fixes for aucat.1, and sync usage(); ok ratchov | Jason McIntyre | |
2008-05-23 | Properly pass the directory tag of parent directory into new subdirectories. | Tobias Stoeckmann | |
Spotted by and ok joris. | |||
2008-05-23 | add support for: | Alexandre Ratchov | |
- recording, full-duplex operation - format conversions and resampling on the fly - mixing on the fly of multiple inputs of different formats - up to 16 channels, simplistic "routing" of channel ranges - more linear encodings (in raw and wav files) the old behaviour is fully preserved if none of the new -i and -o options are used. code and fixes from jakemsr@ and eric@, suggestions by others. ok "go ahead" deraadt@ | |||
2008-05-22 | I really hate commiting here, but this was far too good not to. | Bob Beck | |
ok "commit but don't you dare putting my name there" from an anonymous french developer. | |||
2008-05-22 | Wrong function names in fatal messages fixed. | Tobias Stoeckmann | |
2008-05-22 | expension -> expansion | Tobias Stoeckmann | |
ok joris, xsa (quite some time ago) | |||
2008-05-22 | fix updating to tags pointing at branch revisions; | Joris Vink | |
from Neels Janosch Hofmeyr and Stefan Sperling | |||
2008-05-22 | correctly deal with non-zero depths specified in rcsnum_cmp(); | Joris Vink | |
from Stefan Sperling | |||
2008-05-22 | Spacing; Stefan Sperling. | Xavier Santolaria | |
2008-05-22 | Error messages fixes; Stefan Sperling. | Xavier Santolaria | |
2008-05-21 | Remove elf2aout and elf2ecoff. They are no longer built since they were only | Miod Vallat | |
used by the long defunct OpenBSD/arc and OpenBSD/pmax ports, and nowadays using objcopy or a linker script will perform such conversions if necessary. ok deraadt@ kettenis@ | |||
2008-05-19 | unbreak tree by committing this bit that I missed from: | Damien Miller | |
Fix sending tty modes when stdin is not a tty (bz#1199). Previously we would send the modes corresponding to a zeroed struct termios, whereas we should have been sending an empty list of modes. Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@ | |||
2008-05-19 | support -l (print fingerprint) in combination with -F (find host) to | Damien Miller | |
search for a host in ~/.ssh/known_hosts and display its fingerprint; ok markus@ | |||
2008-05-19 | Fix sending tty modes when stdin is not a tty (bz#1199). Previously | Damien Miller | |
we would send the modes corresponding to a zeroed struct termios, whereas we should have been sending an empty list of modes. Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@ | |||
2008-05-19 | unbreak protocol keepalive timeouts bz#1465; ok dtucker@ | Damien Miller | |
2008-05-18 | comment extension announcement | Damien Miller | |
2008-05-17 | documentation tweaks. | Igor Sobrado | |
ok (some time ago) jmc@ | |||
2008-05-17 | Full support of branches added. We lacked proper support of multiple | Tobias Stoeckmann | |
branch entry points in one revision as well as branches which started from other branches. ok joris | |||
2008-05-17 | grammar and correctness fixes from stevesk@ | Damien Miller | |
2008-05-16 | document our protocol extensions and deviations; ok markus@ | Damien Miller | |
2008-05-15 | document eow message in ssh protocol 2 channel state machine; | Damien Miller | |
feedback and ok markus@ | |||
2008-05-15 | fix uninitialised variable; from ray@ | Damien Miller | |
2008-05-14 | add missing $OpenBSD$ tags | Charles Longeau | |
ok ian@ | |||
2008-05-13 | Change a mktemp(3) to mkstemp(3), preventing a race condition. | Ray Lai | |
Improve error checking. OK okan@ | |||
2008-05-13 | Remove #if 0 code that has been unused for nearly a decade (and | Ray Lai | |
probably doesn't compile, since the types for some variables have changed from long to char *). OK millert@ | |||
2008-05-12 | Ensure nh_result lies on a 64-bit boundary (fixes warnings observed | Peter Valchev | |
on Itanium on Linux); from Dale Talcott (bug #1462); ok djm@ | |||
2008-05-11 | If "cvs admin" encountered an entry in CVS/Entries for a file which has no | Tobias Stoeckmann | |
(longer an) RCS file in CVSROOT, both -- GNU cvs and OpenCVS -- segfaulted. ok joris | |||
2008-05-11 | Memory leak in rcs_delta_stats plugged. | Tobias Stoeckmann | |
ok joris | |||
2008-05-10 | properly free suffixes. | Joris Vink | |
OK tobias@ | |||
2008-05-10 | OpenRCS only handled a max of 128 arguments on command line + RCSINIT, | Tobias Stoeckmann | |
which was a bogus limit. Spotted by naddy. horribly prodded by and ok joris | |||
2008-05-09 | unbreak | Markus Friedl | |
ssh -2 localhost od /bin/ls | true ignoring SIGPIPE by adding a new channel message (EOW) that signals the peer that we're not interested in any data it might send. fixes bz #85; discussion, debugging and ok djm@ | |||
2008-05-09 | error-fd race: don't enable the error fd in the select bitmask | Markus Friedl | |
for channels with both in- and output closed, since the channel will go away before we call select(); report, lots of debugging help and ok djm@ | |||
2008-05-09 | re-add the USE_PIPES code and enable it. | Markus Friedl | |
without pipes shutdown-read from the sshd does not trigger a SIGPIPE when the forked program does a write. ok djm@ | |||
2008-05-09 | dingo stole my diff hunk | Damien Miller | |
2008-05-09 | tidy up session multiplexing code, moving it into its own file and | Damien Miller | |
making the function names more consistent - making ssh.c and clientloop.c a fair bit more readable. ok markus@ | |||
2008-05-09 | some Xr for tcpbench(1) and tcpdrop(8); | Jason McIntyre | |
2008-05-09 | tweak previous; ok djm | Jason McIntyre | |
2008-05-09 | try SO_BINDANY for -s, but do not insist; ok bob, reyk | Markus Friedl | |
2008-05-09 | add tcpbench to build | Theo de Raadt | |
2008-05-09 | s/bench/tcpbench/ in usage(); spotted by schellekens.dries AT gmail.com | Damien Miller | |
2008-05-09 | Try additional addresses when connecting to a port forward destination | Damien Miller | |
whose DNS name resolves to more than one address. The previous behaviour was to try the first address and give up. Reported by stig AT venaas.com in bz#343 great feedback and ok markus@ |