Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-11 | send 'window adjust' messages every tree packets and do not wait | Markus Friedl | |
until 50% of the window is consumed. ok djm dtucker | |||
2007-06-10 | clear to end of line at quit, needed for terms that do not restore | Otto Moerbeek | |
content on quiting curses mode, like screen. found and tested by ray@ | |||
2007-06-10 | add "Towel Day" | Simon Bertrang | |
ok jasper@ | |||
2007-06-09 | - Change sizeof(type) to sizeof(*ptr). | Ray Lai | |
- Move function prototypes before variables. No binary change. OK otto and millert. | |||
2007-06-08 | If strict locking is disabled, make file writable by owner on checkout. | Xavier Santolaria | |
Matches GNU's behaviour. From Pierre Riteau (long time ago). | |||
2007-06-08 | oops, here too: put the MAC list into a display, like we do for | Jason McIntyre | |
ciphers, since groff has trouble with wide lines; | |||
2007-06-08 | put the MAC list into a display, like we do for ciphers, | Jason McIntyre | |
since groff has trouble handling wide lines; | |||
2007-06-08 | Add a "MACs" line after "Ciphers" with the default MAC algorithms, | Peter Valchev | |
to ease people who want to tweak both (eg. for performance reasons). ok deraadt@ djm@ dtucker@ | |||
2007-06-07 | Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, must | Peter Valchev | |
specify umac-64@openssh.com). Provides about 20% end-to-end speedup compared to hmac-md5. Represents a different approach to message authentication to that of HMAC that may be beneficial if HMAC based on one of its underlying hash algorithms is found to be vulnerable to a new attack. http://www.ietf.org/rfc/rfc4418.txt in conjunction with and OK djm@ | |||
2007-06-07 | Correct exit value when one of the files specified cannot be checked out. | Xavier Santolaria | |
Matches GNU's behaviour. From Pierre Riteau (long time ago). | |||
2007-06-06 | Remove the .netrc parser when compiling a SMALL binary. | Pierre-Yves Ritschard | |
there is no .netrc file on the install media and keeping the parser shaves a good deal of bytes in the binary. ok millert@, "go on" deraadt@, "makes sense" steven@ | |||
2007-06-06 | Don't double xstrdup. | Ray Lai | |
From mickey. ``i made a booboo'' joris, OK niallo and xsa. | |||
2007-06-05 | Preserve MAC ctx between packets, saving 2xhash calls per-packet. | Damien Miller | |
Yields around a 12-16% end-to-end speedup for arcfour256/hmac-md5 patch from markus@ tested dtucker@ and myself, ok markus@ and me (I'm committing at his request) | |||
2007-06-04 | remove a fatal i committed by accident. | Niall O'Higgins | |
2007-06-04 | make jmc happy by somewhat smarter synopsis scanning code for -h; ok | Otto Moerbeek | |
jaredy@ | |||
2007-06-04 | remove IPX support, agreed by many | Henning Brauer | |
2007-06-02 | knock out FIBMAP (which we got rid of) | Theo de Raadt | |
2007-06-02 | memory leak on error path; from arnaud.lacombe.1 AT ulaval.ca | Damien Miller | |
2007-06-02 | don't try to parse a server conflict message as a date. | Niall O'Higgins | |
makes cvs remote merging with conflicts work a bit better. ok joris@ xsa@ | |||
2007-06-02 | safer snprintf construct with more paranoid length calculation | Peter Valchev | |
ok millert | |||
2007-06-01 | add support for local and remote branch checkout. for example, | Niall O'Higgins | |
cvs co -rOPENBSD_3_0 works now. along the way, simplify and rationalise code and fix a few nits. ok joris@ xsa@ ray@ | |||
2007-06-01 | more adosfs removal; | Jason McIntyre | |
2007-05-31 | gc unreachable code; spotted by Tavis Ormandy | Damien Miller | |
2007-05-31 | missing `&'; | Jason McIntyre | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-31 | - note some apps which are xpg4, not posix | Jason McIntyre | |
- note that some apps are optional to posix after some discussion w/ otto | |||
2007-05-30 | document \&$Mdocdate$; prodded by xsa | Jason McIntyre | |
2007-05-30 | some i missed... | Jason McIntyre | |
- consistent text for STANDARDS - note which options are extensions to POSIX | |||
2007-05-30 | tidy: KNF, ARGSUSED and u_int | Damien Miller | |
2007-05-30 | rearrange the start of this page to appease man -h; | Jason McIntyre | |
2007-05-30 | rename msec to the less confusing sec and improve the description in | Otto Moerbeek | |
the man page. ok dlg@ and jmc@ | |||
2007-05-30 | - use a consistent text for STANDARDS | Jason McIntyre | |
- note which options are extensions to POSIX | |||
2007-05-30 | Remove cand structure (but not its definition). | Ray Lai | |
2007-05-30 | Remove unused struct diff_arg. | Ray Lai | |
2007-05-30 | Sync rcsdiff -> cvs diff | Ray Lai | |
Surprisingly, rcsdiff has nicer code than cvs diff. Changes: 1. Include sys/param.h because we are using MIN/MAX... not sure why it hasn't complained in the past. 2. Use fstat instead of stat. 3. Remove useless casts and __inline. 4. Plug a memory leak. OK niallo@ | |||
2007-05-29 | fix some list items; from andres | Jason McIntyre | |
2007-05-29 | reorder code so that the wave header gets the size of the current track | Michael Coulter | |
instead of the previous track. Alexey Vatchenko agrees. | |||
2007-05-29 | otto would prefer only displaying one digit after decimal for refresh rate | Ted Unangst | |
2007-05-29 | remove -j from SYNOPSIS and usage(); it's deprecated and already | Jason McIntyre | |
documented in STANDARDS; ok otto | |||
2007-05-29 | Bring in some changes from rcsdiff: | Ray Lai | |
1. Replace all the e*alloc functions with the x*alloc versions. 2. Whitespace syncs according to style. 3. Remove the __inline stuff. 4. Remove the min/max functions, using the MAX/MIN macros instead. OK millert@ | |||
2007-05-29 | Get rid of another useless variable, another difference between our | Ray Lai | |
diff code and diff(1). OK niallo@ | |||
2007-05-29 | more parts of netbsd compat that go away | Theo de Raadt | |
2007-05-29 | Instead of using hand-crafted redraws minimizing screen updates, use curses. | Otto Moerbeek | |
Enables nice things like process highlighting without hurting the brain. ok deraadt@ | |||
2007-05-29 | I've been running with an abort upon fatal loop, and I think I've | Ray Lai | |
mostly gotten rid of them. It would be nice to know if there is a fatal loop instead of dying quietly, so call errx instead of exit(1). errx does not call fatal so it should be fine. OK niallo@ | |||
2007-05-29 | Since xrealloc dies on failure it is safe to directly assign to the | Ray Lai | |
original pointer. Theo agrees, and so does the rest of the tree (ssh, etc. all do this already). Saves a bunch of variables and assignments. OK niallo@ | |||
2007-05-28 | Some spacing syncs with diff(1). | Ray Lai | |
2007-05-28 | "in formation" -> "information" | Ray Lai | |
OK niallo@ | |||
2007-05-28 | Line up comments with the rest of the file, like in diff(1). | Ray Lai | |
2007-05-28 | the device fd is global. no need to pass it between functions. | Michael Coulter | |
2007-05-28 | Add a global-wd-mode command, which toggles between the current | Kjell Wooding | |
behavior (every buffer maintains its own cwd) and the old behavior of one global working directory. This makes it slightly easier to hack on things like kernel code, where compilation, etc, are initiated from a different directory than you are working in. While here, fix setting/handling of global wd. |