summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
1997-09-13annoying indentation botchTheo de Raadt
1997-09-12Add parens to shut up -Wall.Todd C. Miller
1997-09-11only check magic in certain cases... sighTheo de Raadt
1997-09-11support the binutils ldTheo de Raadt
1997-09-11from ws@netbsd; Fix a few bugs, especially when repairing disks:Theo de Raadt
Print correct pathname in error messages Fix unterminating loop when trying to correct a bad fat Require fat media byte to be the same as the one in the bpb Fix unterminating loop when looking for free directory slot in LOST.DIR (bad disk image provided by Christoph Badura)
1997-09-09Update to reality.Tobias Weingartner
1997-09-05busted warnx; msaitoh@spa.is.uec.ac.jpTheo de Raadt
1997-09-05missing documentation.Niels Provos
1997-09-04use err()/warn()/__progname where appropriate, consolidate string, some -WallMichael Shalayeff
1997-09-03add xr installboot for i386Michael Shalayeff
change msg to accomodate multiple man pages in SEEALSO
1997-09-03use err()/warn()/__prognameMichael Shalayeff
document -d
1997-09-03bye byeTheo de Raadt
1997-09-03arghNiels Provos
1997-09-03forgot a state_insert, handling resource limit messages should work now!Niels Provos
1997-09-02including changes between drafts-14-16.Niels Provos
update cookie and counters correctly after receiving a resource limit message.
1997-08-29move _PATH_BOOTDIR w/ trailing slash into paths.h for other progs...Michael Shalayeff
disklabel changed to use it that way
1997-08-29fix case we have no CPU_BIOS* definedMichael Shalayeff
1997-08-28symbolic bios bootdev, s/hpc/tpc/ for bios geonetryMichael Shalayeff
1997-08-28grok bios geometryMichael Shalayeff
1997-08-26first try at documentationNiels Provos
1997-08-26$OpenBSD$Niklas Hallqvist
1997-08-26Forgot about keyword.c's tag, regenned againNiklas Hallqvist
1997-08-26Move over -encap change to keywords.sh only made to keywords.h,Niklas Hallqvist
$OpenBSD$ tagging. Added a missing extern specifier. Regenerated keywords.h
1997-08-26main should return intNiklas Hallqvist
1997-08-26main should return intNiklas Hallqvist
1997-08-26made hopefully more user friendly + support for new esp.Niels Provos
1997-08-25add vnconfig(8) in SEE ALSO. From dworkin@village.orgTodd C. Miller
1997-08-25subtract take changing time from estimate; blank@fox.uni-trier.deTheo de Raadt
1997-08-24if interface not found by SIOCGIFCONF when printing, complain.Theo de Raadt
1997-08-24#include <string.h> for strlen() and strcpy().Todd C. Miller
1997-08-24#include <string.h> for strlen().Todd C. Miller
1997-08-2464bit fix, cast pointers to long, not int.Todd C. Miller
1997-08-24give shutdown daemon own session; dima@tejblum.dnttm.rssi.ruTheo de Raadt
1997-08-24More err()/warn()/etc. argument fixes.Jason Downs
1997-08-24do not ever call err() with a 2nd arg that could have a % in it, ok?Theo de Raadt
1997-08-20Fix pasto.Todd C. Miller
1997-08-20Print "Filesystem not supported by kernel" not "Operation not supported byTodd C. Miller
device" (EOPNOTSUPP) so the real problem is obvious. Idea from Peter Seebach <seebs@taniemarie.solon.com>.
1997-08-20Fix typo. From Matthew Hunt <mph@pobox.com>.Todd C. Miller
1997-08-19Some KNF, check a few return values and use err/warn.Todd C. Miller
1997-08-19Move bad dynamic port parsing into parse_baddynamic().Todd C. Miller
1997-08-19Add support for adding/subtracting ports from the current baddynamicTodd C. Miller
mask.
1997-08-19typoTodd C. Miller
1997-08-19Make net.inet.tcp.baddynamic and net.inet.udp.baddynamicTodd C. Miller
comma-separated instead of space-separated when printing so it is easy to cut and paste.
1997-08-19Only print bad dynamic ports list for udp and tcp since that's allTodd C. Miller
that exist. This fixes a bug where net.inet.ip.redirect, net.inet.ip.directed-broadcast, and net.inet.tcp.keepinittimem got interpreted as dynamic port lists. Oops.
1997-08-18#include <string.h> not <strings.h> -- Yes, I'm a weanie...Todd C. Miller
1997-08-13handle ext2fs speciallyTheo de Raadt
1997-08-11Add extra off_t casts for paranoia and because I don't have a largeTodd C. Miller
filesystem to prove that it is *not* necesary.
1997-08-09The list of tcp/udp ports not to allocate dynamically is nowTodd C. Miller
a bitmask configurable via sysctl([38]). The default values have not changed. If one wants to change the list it should be done early on in /etc/rc.
1997-08-09struct statfs uses a signed short f_flags field. This field is used inNiklas Hallqvist
the long (the type) expression that makes up the mount flags field passed to mount(2). If we are dealing with a noatime mount this means sign extension will occur and the flag field will get messed up. I.e. noatime mounts (at least rw ones) ended up not exportable. I fixed this by casting to u_short in the expressions, but I would like to change struct statfs instead, but that is an API issue it is not for me to decide on. I also added error decoding in two syslog calls. This was made possible by the arglist heuristics printout of OpenBSD/alpha DDB :-)
1997-08-06do not clobber errno in signal handlersTheo de Raadt