summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
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
2006-01-06mark up fix;Jason McIntyre
2006-01-06restructure the section on cvs sub-commands: make each commandJason McIntyre
a sub-section, and put the command usage in an indented display; this removes the problem of line split on complicated usage, and makes the usage itself much easier to maintain (no mark up to worry about). page looks nicer too ;) ok joris xsa
2006-01-06ingore local update of newly added files. this fixes some possibleReyk Floeter
NULL pointer conditions and also removes some obsolete extra checks. ok joris@
2006-01-06uninitialized pointer could confuse the cleanup checkReyk Floeter
ok joris@
2006-01-06typos;Xavier Santolaria
2006-01-06final round of whacking FILES for duplicate info, and some consistencyJason McIntyre
fixes; ok djm
2006-01-06weed out some duplicate info in the known_hosts FILES entries;Jason McIntyre
ok djm
2006-01-06zap <paths.h>;Xavier Santolaria
2006-01-06nicer EXAMPLES; from ray laiJason McIntyre
2006-01-05check that stdio file descriptors are actually closed before clobberingDamien Miller
them in sanitise_stdfd(). problems occurred when a lower numbered fd was closed, but higher ones weren't. spotted by, and patch tested by Frédéric Olivié
2006-01-05cleanup, move log.h and rcs.h inclusion into rcsprog.h;Xavier Santolaria
2006-01-04-.Xr gzip 1 ,Jason McIntyre
2006-01-04+.Xr ssh-keyscan 1 ,Jason McIntyre
2006-01-04remove .Xr's to rsh(1) and telnet(1): they are hardly needed;Jason McIntyre
2006-01-04chop out some duplication in the .{r,s}hosts/{h,sh}osts.equiv FILESJason McIntyre
entries; ok markus
2006-01-04add an EXAMPLES section adapted from freebsd's page,Jason McIntyre
courtesy of ray lai;
2006-01-04add an EXAMPLES section adapted from freebsd's page,Jason McIntyre
courtesy of ray lai;
2006-01-04make cvs_sendresp() return type void; ok joris@.Xavier Santolaria
2006-01-03renaming zlib.{c,h} files to compress.{c,h} and link to build;Xavier Santolaria
was pretty stupid calling them that way; ok joris@ niallo@.
2006-01-03tweak the description of ~/.ssh/environmentJason McIntyre
2006-01-03put FILES in some sort of order: sort by pathnameJason McIntyre
2006-01-03use a larger width for the ENVIRONMENT list;Jason McIntyre
2006-01-03move FILES to a -compact list, and make each files an item in that list.Jason McIntyre
this avoids nastly line wrap when we have long pathnames, and treats each file as a separate item; remove the .Pa too, since it is useless.
2006-01-03use fatal();Xavier Santolaria
2006-01-03knf;Xavier Santolaria
2006-01-02zap, kill and eliminate unused code;Joris Vink
2006-01-02some corrections from michael knudsen;Jason McIntyre
2006-01-02- nuke remaining err(), errx() and warnx() instances.Xavier Santolaria
- make cvs_log_init() return type void. ok joris@.
2006-01-02+.Xr tftp-proxy 8 ,Jason McIntyre
2006-01-02No need to include both <sys/signal.h> and <signal.h>, only <signal.h>Todd C. Miller
is needed.
2006-01-02start to cut some duplicate info from FILES;Jason McIntyre
help/ok djm
2006-01-02more includes cleanup;Xavier Santolaria
2006-01-02rename variable to fix shadow warning;Xavier Santolaria
2006-01-02#include's cleanup; ok joris@ niallo@.Xavier Santolaria
2006-01-02#include's cleanup; ok joris@ niallo@.Xavier Santolaria
2006-01-02clarify tun(4) opening - set the mode and bring the interface up. alsoReyk Floeter
(re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces. suggested and ok by djm@
2006-01-02use a common max. packet length, no binary changeDamien Miller
2006-01-01disable case-mapping (evil software caps-lock) by default. if you are crazyDamien Miller
enough to want it, then it can be turned on in /etc/remote; "lovely" deraadt@