summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2004-07-06various cleanupJared Yanovich
- fix overruns in overstrike() and iattr() - sort headers - sync usage output - some KNF - use err()/warn() where applicable ok millert@ otto@
2004-07-06add pgrep to .Nm line to allow `apropos/whatis pgrep' to work;Jason McIntyre
2004-07-06make -w optional to set options, so audioctl is consistent withVincent Labrecque
"new" sysctl/mixerctl ok millert@, "go for it" deraadt@
2004-07-05Use strtonum() instead of assigning the value of strtoul() to a uid_t/gid_t.Todd C. Miller
Fixes a warning on 64bit platforms and is less error-prone. OK otto@
2004-07-03move sysctl comment on namelist[] entryTheo de Raadt
2004-07-03Fixes from Jared Yanovich with help from myself and cloder@; OK otto@Todd C. Miller
o make lam(1) use getopt(3) and err(3). o fix off-by-one error o use OPEN_MAX instead of rolling our own o a little KNF
2004-07-03Put s/key functions inside #ifdef SKEY same as monitor.c,Darren Tucker
from des@freebsd via bz #330, ok markus@
2004-07-03Use '\0' not 0 for string; ok djm@, deraadt@Darren Tucker
2004-07-02Do not divide by zero in vmstat -t; Nikos Ntarmos.Miod Vallat
2004-07-01simpilfy warning() and wallMichael Shalayeff
2004-07-01warn vs perror; __progname; and wallMichael Shalayeff
2004-07-01use err/errx and __progname; -WallMichael Shalayeff
2004-07-01setmode(3) returns void *, not mode_t *. ok millert@Otto Moerbeek
2004-06-30convert references in SEE ALSO to .Rs/.Re, w/ a little help fromJason McIntyre
netbsd page;
2004-06-30unbreak TTY break, diagnosed by darren AT dazwin.com; ok markus@Damien Miller
2004-06-29use warx instea of fprintfMichael Shalayeff
2004-06-29kill spacesMichael Shalayeff
2004-06-29use warn() instead of perror; err*() are used alreadyMichael Shalayeff
2004-06-29fix alaska and add helicopter and rocketMichael Shalayeff
2004-06-29repair, Chris Kuethe <ckuethe@ualberta.ca>Henning Brauer
2004-06-28add -vz to usage();Jason McIntyre
2004-06-28Remove unneeded -D flags from CFLAGS.Mathieu Sauve-Frankel
2004-06-28Unbreak. The bird noises were confusing me.Ryan Thomas McBride
2004-06-28Theo denys all allegations that he's becoming more relaxed.Ryan Thomas McBride
2004-06-28Remove special #if defined(__i386__) code from systat and vmstat. We now useAaron Campbell
sysctl to fetch interrupt counters on all architectures. Also add new '-z' flag to vmstat which means show all devices, even those that have not yet generated an interrupt. deraadt@ tholo@ drahn@ millert@ ok
2004-06-27free commit for non-attendieMichael Shalayeff
2004-06-27errno struct member -> err; ok millert@Marco S Hyman
2004-06-26initialise some fd variables to -1, djm@ okAnil Madhavapeddy
2004-06-26new sentence, new line;Jason McIntyre
2004-06-26punctuation and grammar fixes. also, keep the options in order.Jason McIntyre
2004-06-26- remove double wordJason McIntyre
- rearrange .Bk to keep SYNOPSIS nice - -M before -m in options description
2004-06-25bz #875: fix bad escape char error message; reported by f_mohr AT yahoo.deDamien Miller
2004-06-25remove netisoHenning Brauer
2004-06-25fix broken fd handling in the re-exec fallback path, particularly whenDamien Miller
/dev/crypto is in use; ok deraadt@ markus@
2004-06-25Fall back to stat+rename if filesystem doesn't doesn't support hardDarren Tucker
links. bz#823, ok djm@
2004-06-25only perform tcp wrappers checks when the incoming connection is on a socket.Damien Miller
silences useless warnings from regress tests that use proxycommand="sshd -i" prompted by david@ ok markus@
2004-06-25cleanup.Mathieu Sauve-Frankel
ok millert@
2004-06-24re-exec sshd on accept(); initial work, final debugging and ok markus@Damien Miller
2004-06-24When given multiple processes to kill, keep going if we are unable to killTodd C. Miller
one (previously it would error out and not kill the remaining ones). OK deraadt@
2004-06-23Fix counting in master/slave when passing environment variables; ok djm@Darren Tucker
2004-06-23-Wshadow fix up s/encrypt/do_encrypt/. OK djm@, markus@mouring
2004-06-22why should . and .. be the first two entries of any dir ?Marc Espie
Let code be portable. okay millert@
2004-06-22Do not generate floating point exception followed by a core dumpOtto Moerbeek
on div or mod by zero, print error message instead. ok espie@
2004-06-22Change login->username, will prevent -Wshadow errors in Portable; ok markus@Darren Tucker
2004-06-22don't show .files by default in ls, add -a option to turn them back on;Damien Miller
ok markus
2004-06-21document sort optionsDamien Miller
2004-06-21prefix ls option flags with LS_Damien Miller
2004-06-21introduce sorting for ls, same options as /bin/ls; ok markus@Damien Miller
2004-06-21mark fatal and cleanup exit as __dead; ok markus@Damien Miller
2004-06-21comment out -Wshadow for now, gcc2 sucks. noticed by markusAnil Madhavapeddy