summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2005-02-10ignore_policy should be ifdef USE_POLICY. hshoexer@ okHakan Olsson
2005-02-09missing tzset(), noticed by Chris Kuethe <chris.kuethe@gmail.com>Henning Brauer
2005-02-07KNF; ok henning@David Krause
2005-02-06"no link .got link" => "no link .... got link". i.e. always displayKenneth R Westerback
complete ellipsis ('...') and a following space. ok beck@
2005-02-03misplaced .El marker;Jason McIntyre
2005-02-03sync usage outputJared Yanovich
2005-02-03- simplify, normalize, and sync usage/synopsis formsJared Yanovich
- filesystem -> file system, for consistency - indent sections where applicable - mdoc, punctuation, grammar, etc. fixes - document SIGINFO to fsck_ffs - unify description of -n among documents - sprinkle xrefs all around - move parts relevant to fsck.8 from fsck_ffs.8 parts from NetBSD ok jmc
2005-02-02- syncs are done by a kernel thread, not update(8)Jared Yanovich
- halting flushes the fs cache to disk, no need to run explicitly - other minor tweaks (grammar, punctuation, etc.) ok jmc
2005-01-31Avoid dereferencing a NULL pointerHans-Joerg Hoexer
ok msf
2005-01-31Remove unused stuff.Hans-Joerg Hoexer
ok markus
2005-01-30Avoid null pointer dereference when deleting not fully established SAs.Hans-Joerg Hoexer
ok ho@
2005-01-29some knf and space killing, no binary change.Hans-Joerg Hoexer
2005-01-29Handle some pointers more carefully. From pat@ some while ago.Hans-Joerg Hoexer
ok ho@
2005-01-28add messages for syntax errors that caused silent failure before.Daniel Hartmeier
found by Peter Fraser, ok henning@
2005-01-28Allow setting of kern.tty.*; now we can set kern.tty.maxptys. The kernelTodd C. Miller
itself will return an error if the user tries to set a read-only variable.
2005-01-27remove some overly complex macros;Jason McIntyre
2005-01-27document what preen mode does;Jason McIntyre
text from netbsd -r1.20 (tidied up by myself); pointed out by alexander farber (pr #4076); ok krw@ jaredy@
2005-01-27dynamic interface names must start with a letter. catches the nonsensicalDaniel Hartmeier
"(10.1.2.3)" that results from a simple typo like "$(ext_ip)" instead of "$(ext_if)".
2005-01-23"caught" should be volatile sig_atomic_t; lukem@netbsd.orgTodd C. Miller
Also mark tperror handler as unsafe; dump needs a signal safety overhaul.
2005-01-23Avoid signal race condition. If a slave gets SIGUSR2 between theTodd C. Miller
"setjmp" and the "ready = 1" statements, the slave will pause forever and the whole dump hangs. Fix by hannken@netbsd.org Closes PR 4070; also tested by henning@ and marc@
2005-01-20Document syncif->syncdev change. Also fix order of syncdev optionRyan Thomas McBride
in ifconfig manpage.
2005-01-20Use syncdev instead of syncif in ifconfig, and modify ioctl struct pfsyncreqRyan Thomas McBride
in kernel code to match. Brings pfsync in line with carp, vlan and pppoe devices. Old syncif and -syncif options still work, will be removed later. ok markus@
2005-01-19add a swap primitive; ok various, will be polished after by tomTheo de Raadt
2005-01-19Don't ignore a provided source address, when building an own IP header.Marco Pfatschbacher
This makes the -I option work together with -D, -T and -t. OK deraadt@, hshoexer@, markus@
2005-01-18Print configured timeslot mask for PDH/TDM interfaces.Claudio Jeker
OK deraadt@
2005-01-18Don't shift the timeslot map so that timeslot 1 ends in bit 0. E1 may needClaudio Jeker
to specify timeslot 0 and it is more intuitive. From alex@ Ok deraadt@
2005-01-17PXALCD type.Dale Rahn
2005-01-14Switch OpenBSD/hp300 to wscons, still using on-board ROM fonts for now.Miod Vallat
Main features: - MI hil drivers, allowing live plug/unplug of devices, and the keyboard does not need to be at id 1 anymore. - SGC bus support on 4xx models. SGC frame buffers are supported too, but not as console, though you can use them as a regular glass terminal if you run a getty on ttyC0. Currently not compiled-in, awaiting for an sti(4) fix to be commited. - HP-UX compatibility interfaces are removed. grfinfo and hilinfo are removed. X11 support is currently broken by these changes; X.org X11R6 support will be available very soon. Tested on hyperion and 4 different flavours of catseye/topcat/kathmandu; other, older frame buffers (davinci, gatorbox and renaissance) could not been tested but should work; please report any regression.
2005-01-14zaurus entry, ok miod@Dale Rahn
2005-01-14`halt -p' works on some zaurus platforms (C3000).Uwe Stuehler
ok drahn@
2005-01-13be aware of zaurusTheo de Raadt
2005-01-13build on zaurus too, after further discusssion, because MANSUBDIR needsDale Rahn
updating it will be explicit MACHINE
2005-01-08Use the handler specified in phandler instead of always usingCan Erkin Acar
dump_packet. Report and patch from Peter Postma, thanks.
2005-01-07Print disk size and free space in requested unit. Some refactoring toOtto Moerbeek
avoid code duplication as well. ok marco@ deraadt@
2005-01-07Use fstatfs(), not statfs() to determine free space so if /var/crashTodd C. Miller
is a link we follow it. OK deraadt@ jcs@
2005-01-06validate mfs size to avoid wrapping. ok miod@Otto Moerbeek
2005-01-06Missing braces in pfctl_load_debug(), pointed out by camield@Ryan Thomas McBride
2005-01-05spelling;Jason McIntyre
2005-01-05kill whitespace;Jason McIntyre
2005-01-05Document -m flag.Ryan Thomas McBride
2005-01-05Modify pfctl behaviour so that 'set ...' options are no longer "sticky", ie.Ryan Thomas McBride
they are reset to default values if omitted from a subsequent ruleset load. Also: - make sure 'set ...' options are not loaded in anchors. - add a -m ("merge") flag to pfctl which allows an individual option to be set without reseting the others, eg: # echo "set loginterface fxp0" | pfctl -mf - ok henning@ dhartmei@
2005-01-05Discourage using aggressive mode.Hans-Joerg Hoexer
ok and some help ho@
2005-01-03don't merge a rule's source address into a table if we're already trying toMike Frantzen
merge its destination address. caught by an assertion. it's tempting to do recursive reduction here to pick that low hanging fruit.... bug report from <gustavo AT hades DOT uint8t DOT org>
2005-01-02"bad-timestamp" is a valid logging reason;Jason McIntyre
from joel knight;
2004-12-31Build wicontrol on all arm archs, not just cats.Dale Rahn
2004-12-30Replace home-grown byte swapping routine with calls to swap* macrosTodd C. Miller
from endian.h. Header swapping is moved into its own function. Fixes problems reading non-native endian dump images on sparc64. Adapted from changes in NetBSD.
2004-12-29Put settimeslot() into #ifndef SMALL as it is not needed on ramdisks.Claudio Jeker
OK deraadt@
2004-12-29Print 'set fingerprints' correctly when parsing verbosely.Ryan Thomas McBride
2004-12-29Make sure that fingerprint_count gets reset to 0 correctly when we flushRyan Thomas McBride
our list of fingerprints. ok dhartmei@ henning@ frantzen@
2004-12-29change last commit so that the test for PF_OPT_NOACTION is actually inDan Harnett
pfctl_clear_interface_flags(). suggested by and ok henning@