summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2006-01-20typos in comments;Xavier Santolaria
2006-01-20- word change, agreed w/ markusJason McIntyre
- consistency fixes
2006-01-20Clean up command line parsing, don't accept trailing garbage, add inKenneth R Westerback
missing command line forms, zero variables that will not be filled in by a particular sscanf() call. Make 'play tr1 m1:s1 m2:s2' play from the point in time 'tr1 m1:s1' to the point in time 'm2:s2', instead of from 'tr1 m1:s1' for a period of m2:s2. Documenting this command is next. Closes last issues Juha Erkilla pointed out in PR #4957. Tested by Juha.
2006-01-20Document RekeyLimit. Based on patch from jan.iven at cern.ch from mindrot #1056Darren Tucker
with feedback from jmc, djm and markus; ok jmc@ djm@
2006-01-20Explicitly include limits.h if we are going to use its contents.Todd C. Miller
2006-01-19delint: check value against UINT_MAX before casting to u_int; whileOtto Moerbeek
there fix a buglet in bexp(): x * UINT_MAX only overflows if x > 0
2006-01-18add a section on ssh-based vpn, based on reyk's README.tun;Jason McIntyre
2006-01-17Fix malloc calculation to avoid memory bounds error. deraadt@ okAaron Campbell
2006-01-16minimal recognition of C99 float hex constants, allows lint to parseMarc Espie
frexp.c. okay cloder@, millert@
2006-01-16- in cvs_buf_free(), don't try to free() b->cb_buf if it has not beenNiall O'Higgins
allocated. fixes PR4974. From: <ttakah@lapis.plala.or.jp>
2006-01-16the first ietf meeting; from kai doernemannMichael Shalayeff
2006-01-16remove Xr to self from SEE ALSO;Jason McIntyre
2006-01-16delint; use size_t as stack size and ssize_t as stack pointer.Otto Moerbeek
2006-01-16Kill spurious warnings when using size_t as an index; since size_t andOtto Moerbeek
ptrdiff_T are now alays (u)long, tell lint that. ok millert@ deraadt@
2006-01-15- don't try to malloc 0 bytes of memory if an empty buffer is requested; delayNiall O'Higgins
the malloc till cvs_buf_grow(). fixes PR4972. ok joris@
2006-01-15delint; index is a global symbol, so rename some locals to avoidOtto Moerbeek
hiding
2006-01-15delint wrt return values, including some missing BN returnOtto Moerbeek
values checks.
2006-01-15correction from deraadtJason McIntyre
2006-01-15- add descriptions for 'pzidle' and 'kmapent' fields in vmstat display.Niall O'Higgins
ok jmc@
2006-01-14Properly handle failure binding to a local interface (using the -bOtto Moerbeek
option). Problem found by David Hill <dhill at mindcry dot org>; ok millert@
2006-01-14document why we avoid: set -- `getopt optstring $*`Jason McIntyre
2006-01-14update the example and synopsis so that we are checking theJason McIntyre
exit value of getopt itself, not `set'; example merged from current freebsd page; problem reported by nordin; ok millert
2006-01-13- kill some of the mad escaping;Jason McIntyre
2006-01-12back out a sentence - AUTHENTICATION already documents this;Jason McIntyre
2006-01-12refer to TCP forwarding, rather than TCP/IP forwarding;Jason McIntyre
2006-01-12refer to TCP forwarding, rather than TCP/IP forwarding;Jason McIntyre
2006-01-12refer to `TCP' rather than `TCP/IP' in the context of connectionJason McIntyre
forwarding; ok markus
2006-01-12change incorrect FILES entries for makefiles;Jason McIntyre
problem found by marc balmer;
2006-01-12split sections on tcp and x11 forwarding into two sections.Jason McIntyre
add an example in the tcp section, based on sth i wrote for ssh faq; help + ok: djm markus dtucker
2006-01-11Fix recovery of realloc failure, which causes a segv on files withOtto Moerbeek
very lone lines, as reported by Steffen Wendzel. ok deraadt@
2006-01-11fix xi olympic games; from mischa diehmMichael Shalayeff
2006-01-11Whitespace nits.Kenneth R Westerback
2006-01-10fix the time view of the interface stats so that is shows the averageDavid Gwynne
over the refresh interval (like the manpage says it should) instead of the total. ok markus@
2006-01-10Fix issues with relative times, especially track # vs TOC indexKenneth R Westerback
confusion, noted by Juha Erkkila in PR #4957. Make code a lot clearer. Error out on out of range track numbers. Tested by Juha.
2006-01-10Prevent close() from clobbering errno. ok otto@ deraadt@Moritz Jodeit
From Ray Lai
2006-01-10- rewrite RCS keyword expansion. the old way of doing it was very slow,Niall O'Higgins
this method avoids lots of expensive buffer operations, and gives OpenCVS a considerable speed boost. ok xsa@ "put it in" joris@
2006-01-10- add cvs_buf_getc() function; returns byte at specified buffer position.Niall O'Higgins
needed for the next commit. ok xsa@ joris@
2006-01-10zap unused variables;Xavier Santolaria
2006-01-10Use strlcpy(), not strncpy(); OK deraadt@Todd C. Miller
2006-01-09No more ancontrol.Jonathan Gray
2006-01-09Add cmpmsf(). Use it to eliminate repeated code. No functional change.Kenneth R Westerback
2006-01-09Bring in toc2msf() from NetBSD's cdplay. Use it to eliminate repeatedKenneth R Westerback
code. No functional change.
2006-01-09Bring in addmsf() from NetBSD's cdplay. Use it to eliminate repeatedKenneth R Westerback
manual calculation. No functional change.
2006-01-08Remove unused NADD_USLONG macro, and remove unused sp argument from NADD_SLONG;Miod Vallat
no functional change. From Ray Lai.
2006-01-08Fix one more uninitialized variable scenario; from Ray Lai.Miod Vallat
2006-01-08Make sure we can exit from a loop in v_key_init() regardless of the localeMiod Vallat
we're in; from Ray Lai.
2006-01-08Appease gcc 3 and the C gods by fixing a couple of undefined statements;Miod Vallat
from Ray Lai.
2006-01-08Explicit braces around macro fields and logical operations, gets rid of 148Miod Vallat
warnings, no functional change. From Ray Lai.
2006-01-08make cvs_init_create_files() return type void; ok joris@.Xavier Santolaria
2006-01-06Adapt things to use __type_t instead of _BSD_TYPE_T_Todd C. Miller
Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable