summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-06-11send 'window adjust' messages every tree packets and do not waitMarkus Friedl
until 50% of the window is consumed. ok djm dtucker
2007-06-10clear to end of line at quit, needed for terms that do not restoreOtto Moerbeek
content on quiting curses mode, like screen. found and tested by ray@
2007-06-10add "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-08If 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-08oops, here too: put the MAC list into a display, like we do forJason McIntyre
ciphers, since groff has trouble with wide lines;
2007-06-08put the MAC list into a display, like we do for ciphers,Jason McIntyre
since groff has trouble handling wide lines;
2007-06-08Add 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-07Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, mustPeter 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-07Correct 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-06Remove 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-06Don't double xstrdup.Ray Lai
From mickey. ``i made a booboo'' joris, OK niallo and xsa.
2007-06-05Preserve 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-04remove a fatal i committed by accident.Niall O'Higgins
2007-06-04make jmc happy by somewhat smarter synopsis scanning code for -h; okOtto Moerbeek
jaredy@
2007-06-04remove IPX support, agreed by manyHenning Brauer
2007-06-02knock out FIBMAP (which we got rid of)Theo de Raadt
2007-06-02memory leak on error path; from arnaud.lacombe.1 AT ulaval.caDamien Miller
2007-06-02don'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-02safer snprintf construct with more paranoid length calculationPeter Valchev
ok millert
2007-06-01add 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-01more adosfs removal;Jason McIntyre
2007-05-31gc unreachable code; spotted by Tavis OrmandyDamien Miller
2007-05-31missing `&';Jason McIntyre
2007-05-31convert to new .Dd format;Jason McIntyre
2007-05-31- note some apps which are xpg4, not posixJason McIntyre
- note that some apps are optional to posix after some discussion w/ otto
2007-05-30document \&$Mdocdate$; prodded by xsaJason McIntyre
2007-05-30some i missed...Jason McIntyre
- consistent text for STANDARDS - note which options are extensions to POSIX
2007-05-30tidy: KNF, ARGSUSED and u_intDamien Miller
2007-05-30rearrange the start of this page to appease man -h;Jason McIntyre
2007-05-30rename msec to the less confusing sec and improve the description inOtto Moerbeek
the man page. ok dlg@ and jmc@
2007-05-30- use a consistent text for STANDARDSJason McIntyre
- note which options are extensions to POSIX
2007-05-30Remove cand structure (but not its definition).Ray Lai
2007-05-30Remove unused struct diff_arg.Ray Lai
2007-05-30Sync rcsdiff -> cvs diffRay 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-29fix some list items; from andresJason McIntyre
2007-05-29reorder code so that the wave header gets the size of the current trackMichael Coulter
instead of the previous track. Alexey Vatchenko agrees.
2007-05-29otto would prefer only displaying one digit after decimal for refresh rateTed Unangst
2007-05-29remove -j from SYNOPSIS and usage(); it's deprecated and alreadyJason McIntyre
documented in STANDARDS; ok otto
2007-05-29Bring 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-29Get rid of another useless variable, another difference between ourRay Lai
diff code and diff(1). OK niallo@
2007-05-29more parts of netbsd compat that go awayTheo de Raadt
2007-05-29Instead 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-29I've been running with an abort upon fatal loop, and I think I'veRay 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-29Since xrealloc dies on failure it is safe to directly assign to theRay 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-28Some spacing syncs with diff(1).Ray Lai
2007-05-28"in formation" -> "information"Ray Lai
OK niallo@
2007-05-28Line up comments with the rest of the file, like in diff(1).Ray Lai
2007-05-28the device fd is global. no need to pass it between functions.Michael Coulter
2007-05-28Add a global-wd-mode command, which toggles between the currentKjell 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.