summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2004-07-28.Xr growfs 8Jason McIntyre
2004-07-28sort options, and fix a spurious list width;Jason McIntyre
2004-07-28- sort optionsJason McIntyre
- sync usage() - use -keeps for SYNOPSIS
2004-07-28This touches only MI code, and adds new time keeping code. TheThorsten Lockert
code is all conditionalized on __HAVE_TIMECOUNTER, and not enabled on any platforms. adjtime(2) support exists, courtesy of nordin@, sysctl(2) support and a concept of quality for each time source attached exists. High quality time sources exists for PIIX4 ACPI timer as well as some AMD power management chips. This will have to be redone once we actually add ACPI support (at that time we need to use the ACPI interfaces to get at these clocks). ok art@ ken@ miod@ jmc@ and many more
2004-07-23- make SYNOPSIS and usage() clear that -t precedes -T;Jason McIntyre
spotted by Tamas Tevesh, via dhartmei@; also, add -o to usage(), and note that /ruleset is now the correct syntax, not :ruleset; ok dhartmei@
2004-07-21use \- for number rangesJared Yanovich
document new timeslot command ok alex jmc
2004-07-20Make ENXIO from SIOCGWAVELAN a fatal error so we don't get garbageTodd C. Miller
when wicontrol is run on a non-existant interface.
2004-07-19print the correct labels when displaying timeouts with pfctl (eg, pfctl -st).David Gwynne
From Chris Pascoe. ok dhartmei@
2004-07-17some ansi; khalek@linuxgamers.netTheo de Raadt
2004-07-16'pfctl -o' ruleset optimizer that doesnt change the meaning of the final rulesetMike Frantzen
- remove identical and subsetted rules - when advantageous merge rules w/ similar addresses into a table and one rule - re-order rules to improve skip step performance (can do better w/ kernel mods) - 'pfctl -oo' will load the currently running ruleset and use it as a profile to direct the optimization of quicked rules ok henning@ mcbride@. man page help from jmc@
2004-07-16remove netiso traces, millert deraadt okHenning Brauer
2004-07-15remove references to removed pages: clnp(4), esis(4), and iso(4);Jason McIntyre
2004-07-15fix for setting antena diversity; from Brian Falk <falk@seas.upenn.edu>Michael Shalayeff
2004-07-15Keep trying if we get EINPROGRESS from SIOCGWAVELAN, up to 10 times.Todd C. Miller
2004-07-15Make wi_getval() return int and check the rval when printing the AP list.Todd C. Miller
Avoids bogus data leading to a core dump on cards that don't support it.
2004-07-14no \n in errx(3)Henning Brauer
From: Andrey Matveev <andrushock@korovino.net>
2004-07-13Remove unused argument 'int pn' to PRT_fix_CHS(). The 'int pn'Tom Cosgrove
argument to PRT_parse() then becomes unused, so remove that too. ok henning@, otto@
2004-07-11Just use err(1, NULL) following malloc() failures, per err(3).Tom Cosgrove
ok otto@
2004-07-10The long descriptions of partition types are not used by the code, soTom Cosgrove
have them as comments rather than data. Reduces the size of the executable by over 2 KB. Also s/Netware/NetWare/. ok tedu@ deraadt@
2004-07-09variety of cleanups; nofsk@aanet.com.au and ITheo de Raadt
2004-07-09ansiTheo de Raadt
2004-07-08free() and close() in error path.Hans-Joerg Hoexer
ok ho@
2004-07-08typo, and line adjustment;Jason McIntyre
2004-07-07document -a/-K and "Acquire-Only"/"Use-Keynote".Hans-Joerg Hoexer
ok markus@ henning@ ho@ english polish and mdoc help and ok jmc@
2004-07-07make the shell script execution window 3 seconds. i really need to findTheo de Raadt
a better solution...
2004-07-07plug memleak when receiving an INVALID_HASH_INFORMATION notify.Hans-Joerg Hoexer
Found by Patrick Latifi, thanks! ok ho@
2004-07-07compile cleanly with -Wsign-compare; while around, kill a spaceHans-Joerg Hoexer
ok ho@
2004-07-06delint: offset arg to mmap is off_t and remove dead codeOtto Moerbeek
ok millert@
2004-07-05when running as supplier and asked about a defualt route but we have no,Henning Brauer
do not try to fake one when the query comes from a non-local network, i. e. ifp is NULL, which caused a segfault. PR3841, William J Hulley <jonny@abduction.org>
2004-07-05userquota and groupquota _optionally_ have a value.Otto Moerbeek
ok pedro@ millert@
2004-07-05%lu and cast to unsigned long to print a size_t; ok hoPeter Valchev
2004-07-05remove useless (always false) check; ok millert henningPeter Valchev
2004-07-05fix warning: extra tokens at end of #undef; ok henningPeter Valchev
2004-07-04properly bitch when we cannot open the config file, basically resemblingHenning Brauer
a diff from Damir Horvat <damir@x-si.org> which didn't apply cleanly
2004-07-03zap INET_ONLY, compress usage(); jaredTheo de Raadt
2004-07-03ansi; jaredTheo de Raadt
2004-07-02Take TMPDIR into account when creating a temp mountpoint for populating.Otto Moerbeek
ok avsm@ millert@; man page ok jmc@
2004-07-02Use "time_second" instead of "time" now that time handling in the kernelThorsten Lockert
has changed. ok art@ millert@ marc@
2004-06-30Compile cleanly with gcc3.3.2.Hans-Joerg Hoexer
ok ho@
2004-06-29remove cedric's bogus interface name verification code.Henning Brauer
this was meant to verify that ne3 is a valid interface that could show up, but bogus0 is not. while this might sound like a good idea it is completely broken and causes a shitload of problems. just allow for anything as interface name, the kernel abstracts that nice enough. if no interface by that name exists (or shows up) the rule never matches; that matches pf semantics used everywhere else. this also fixes the "pfctl always has to run as root" issue that cedric did not fix over the last 6 months despite being bugged to regularily. help & ok mcbride@
2004-06-29convert a few memcpy()s to strlcpy() so we don't copy uninitialized junk intoMike Frantzen
a interface name's slack space past the \0. will be needed for the optimizer. ok henning@
2004-06-28- repair examples which i damaged in previous commitJason McIntyre
- tidy up DIAGNOSTICS, and use -diag - wording from jared yanovich;
2004-06-26For all the mfs lovers:Otto Moerbeek
- Make the root of an mfs file system inherit the permission and owner/group of the mountpoint. Work by david@. - Add the ability to populate an mfs file system with the contents of a directory or a file system immediately after creation, controlled by the new -P mount option. Discussed with and tested by many, ok djm@ david@
2004-06-26cleanup ioctl for ifgroups; ok pb@Markus Friedl
2004-06-26grammar, formatting, consistency, spelling, etc. from jared yanovich;Jason McIntyre
2004-06-26new sentence, new line;Jason McIntyre
2004-06-26new sentence, new line;Jason McIntyre
2004-06-26grammar;Jason McIntyre
2004-06-26add back PF_INOUT, fixes reassemble tcpDavid Krause
ok canacar@ mcbride@
2004-06-26Add option that allows to change timeslot range forn network card.Alex Feldman
ok mcbride@