summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2002-12-30o add Keith Moon's birthday (already have his death)Todd C. Miller
o add John Entwistle's birth and death OK mickey@
2002-12-30use err vs. errx and display function; from Owl. ok fgsch@Kevin Steves
2002-12-30include function in error; from Owl. ok fgsch@Kevin Steves
2002-12-30correct return code check; from Owl. ok fgsch@Kevin Steves
2002-12-30Avoid setting optind to 0 since in GNU getopt() that means the sameTodd C. Miller
as optreset in BSD getopt. This actually simplifies things a bit. espie@ OK
2002-12-29check -DCLEANUP compilationMarc Espie
2002-12-29Synch comment with codeMarc Espie
2002-12-29anotherHenning Brauer
2002-12-28fix calloc's. also check for errors; fixes PR/3043.Federico G. Schwindt
2002-12-26dupe, from Dan WeeksMichael Shalayeff
2002-12-23jow strummer comes and goesMichael Shalayeff
2002-12-23Display offending line number in error messages.Todd C. Miller
Based on a patch from Sam Smith.
2002-12-19This file dates from back when the One True Awk needed patches toTodd C. Miller
build with flex and other changes for 4.4BSD. That is no longer the case...
2002-12-19Recognize CORENIC handles and use CNICHOST like we do VNICHOST ones.Todd C. Miller
By request and based on a diff from Henning Brauer
2002-12-19Update to the One True Awk version 20021213Todd C. Miller
2002-12-19o Add -6 and -c options from FreeBSDTodd C. Miller
o Get rid of sysexits.h from Andrey Matveev o Some simplification and cleanup by me (improved readability, less code) o Add logic to use whois.networksolutions.com if name is a handle starting with '!'
2002-12-19only do "Trying ..." if verboseTheo de Raadt
2002-12-19s/msg_send/ssh_msg_send/ to avoid namespace clashes in portable; ok markus@Damien Miller
2002-12-18t'was not enough space malloced when generating the bodun entriesMichael Shalayeff
2002-12-17Make SysV-style shared memory and semaphore limits sysctl'able.Todd C. Miller
Instead of allocating a static amount of memory for the data structures via valloc() in allocsys(), allocate things dynamically using pool(9) when possible and malloc(9) when not. The various members of struct seminfo and struct shminfo are in kern.seminfo and kern.shminfo respectively (not all members of kern.seminfo are changable). The data structures used still leave something to be desired but things are not made worse in that respect by this commit.
2002-12-17ANSIfu and if given multiple names, don't exit if we get an errorTodd C. Miller
looking up just one. Exit value is now the number of errors found trying to lookup all the names. Some bits from Andrey Matveev.
2002-12-17Only call setlogin() if this proccess is a session leader.Todd C. Miller
In practice, this means the login name will be set only if we are exec'd by a shell. This is important because otherwise the parent shell's login name would change too.
2002-12-17o Implement -r (recursive) optionTodd C. Miller
o add missing options to OPTSTRING o add some option mixing sanity checks o truncate existing files when uncompressing o fixed some problems with suffix handling This brings us closer to being able to replace GNU gzip; mickey@ OK
2002-12-16typo; from Tor Houghton <torh@bogus.net>Michael Shalayeff
2002-12-16Make systat(1), iostat(8) and vmstat(8) automatically update their diskThierry Deval
statistics when a device is added/removed. ok deraadt@
2002-12-15more writable spelling; torhHenning Brauer
2002-12-15typo; torh at bogus.netHenning Brauer
2002-12-14handle multiline replies from the server.Marc Espie
this actually happens on the 3.2 audio CD. ok millert@
2002-12-14add missing OpenBSD tagTodd C. Miller
2002-12-13Recent modifications to netcat changed the behaviour to only exit when bothAaron Campbell
the read (network) and write (stdin) ends of the socket were both closed. This is not how nc traditionally works. Instead, revert back to finishing up when read() on the socket returns 0; deraadt@, vincent@ ok.
2002-12-13audio_prinfo.seek is int now; document and syncChristian Weisgerber
ok miod@ millert@
2002-12-13No need to include sys/cdefs.h explicitly here; Andrey MatveevTodd C. Miller
2002-12-131) include stalling time in total timeMarkus Friedl
2) truncate filenames to 45 instead of 20 characters 3) print rate instead of progress bar, no more stars 4) scale output to tty width based on a patch from Niels; ok fries@ lebel@ fgs@ millert@
2002-12-13Some KNF from Andrey Matveev plus a little cleanup of my own.Todd C. Miller
2002-12-13cleanup debug messages, more useful information for the client user.Markus Friedl
2002-12-12knfTheo de Raadt
2002-12-11Convert ctype.h macros into inline functions. This fixes the issues weTodd C. Miller
currently have with the macro versions and makes the ctype.h versions 100% identical to what is in libc. Discussed with pjanzen@ and OK'd by deraadt@.
2002-12-11Don't require a list of object file for the -d, -m, -q and -r optionsTodd C. Miller
since neither Solaris nor GNU ar require this. Personally I'd rather change the world to use the BSD behavior but that is unlikely and the differing behavior causes problems with libtool and automake. deraadt@ OK
2002-12-11miod asked me to add thisMichael Shalayeff
2002-12-10staticMarkus Friedl
2002-12-10move tos handling to packet_set_tos; ok provos/henning/deraadtMarkus Friedl
2002-12-10power plant day moves back to the 22 from sun+3; from form@ the powermakerMichael Shalayeff
2002-12-10ansi, KNF, other style(9) improvements and logic simplification; ↵Peter Valchev
andrushock@korovino.net
2002-12-10sort options; andrushock@korovino.netPeter Valchev
2002-12-10Make sure $SHELL points to the shell from the password file, even if shellMarkus Friedl
is overridden from login.conf; bug#453; semen at online.sinor.ru; ok millert@
2002-12-09Correct typo. 'accessable' -> 'accessible'Chad Loder
2002-12-09Avoid setting optind to 0 as GNU getopt treats that like we do optreset.Todd C. Miller
markus@ OK
2002-12-09bind ^Xg to gotoline by defaultTheo de Raadt
2002-12-09do not use sys/types.h and sys/param.h together; andrushock@korovino.netTheo de Raadt
2002-12-09From Andrushock, s/sucess/success/gTodd C. Miller