summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2005-11-21Accept and pass through -b option for fsck_ffs and fsck_ext2fsTodd C. Miller
OK mickey@
2005-11-21Fix memory leaks. From Andrey Matveev <evol at online dot ptt dot ru>,Hans-Joerg Hoexer
thanks!
2005-11-21Replace default DEV_BSIZE sector conversion factor with disklabel'sKenneth R Westerback
sector size when possible. Fixes the "[ XX Sectors ]" size display. Pointed out by Robert Szasz while playing with his Sony Hi-MD device. Apply input conversion fixes similar to those recently applied to disklabel(8). Use correct sector size in the conversions. It is still *not* possible to use unusual sector sizes for non-ISO9660 filesystems! ok millert@
2005-11-17typo, ok hshoexer@Alexander von Gernler
2005-11-17for pfctl -f rules, open the file before resetting options. when openingDaniel Hartmeier
the file fails, produce only the error message and leave options unchanged. reported by Tamas TEVESZ, ok deraadt@
2005-11-17add a free() which got lost in r1.104. ok hshoexer@ deraadt@Moritz Jodeit
2005-11-16Avoid printing a NULL string. ok hshoexerChad Loder
2005-11-16Fix conversion of K units to handle case where sector size > 1024. e.g.Kenneth R Westerback
Sony Hi-MD usb drive. ok millert@
2005-11-15Add support for light sensors.Mark Kettenis
ok dlg@
2005-11-15Be cleaner about signed vs. unsigned when it's easy to do so. OK hshoexerChad Loder
2005-11-15Add a new raw2hex function and yank out several pieces of code in otherChad Loder
places that were doing this. Prodding deraadt. OK hshoexer.
2005-11-15More typos (especially indicies -> indices), checked with jmc@Miod Vallat
2005-11-15add "-description" to usage();Jason McIntyre
ok henning@
2005-11-14use snprintf; ok cloder. also looked at by a few other peopleTheo de Raadt
2005-11-14use asprintfTheo de Raadt
and do fstat() on the opened fd, instead of stat() before open() from dhill@mindcry.org
2005-11-14add -descr / -description to clear the interface description, noticed toddHenning Brauer
2005-11-13missing fclose(); from dhill@mindcry.orgTheo de Raadt
2005-11-13missing fclose(); dhill@mindcry.orgTheo de Raadt
2005-11-13spacingTheo de Raadt
2005-11-13fclose() file descriptor of the rule file when we are done with it.Hans-Joerg Hoexer
From David Hill <dhill at mindcry dot org>, thanks!
2005-11-13zap unused variable and silence gcc.Hans-Joerg Hoexer
From Mike Belopuhov <mkb at crypt dot org dot ru> Thanks!
2005-11-12spacingHans-Joerg Hoexer
2005-11-12add support for interface names as host specificationsHans-Joerg Hoexer
2005-11-12FILE * leak, missing fclose(); evol@online.ptt.ruTheo de Raadt
2005-11-12return; at end of function is dorkyTheo de Raadt
2005-11-12left a free() behind, spotted by cloderTheo de Raadt
2005-11-12permit TO/FROM to be swapped (symmetry is good); ok hshoexermkTheo de Raadt
2005-11-12simplify TAILQ walking code; ok hshoexerTheo de Raadt
2005-11-12spacingTheo de Raadt
2005-11-12spacingTheo de Raadt
2005-11-12do not stat() before open(); instead -- use fstat(); ok hshoexerTheo de Raadt
2005-11-12more asprintf; ok dhill@mindcry.orgTheo de Raadt
2005-11-12more memleaks plugged; evol@online.ptt.ruTheo de Raadt
2005-11-12use snprintf; dhill@mindcry.orgTheo de Raadt
2005-11-12use snprintf; ok cloder dhill@mindcry.orgTheo de Raadt
2005-11-12handle transport/tunnel modeHans-Joerg Hoexer
2005-11-12memory leak; ok cloderTheo de Raadt
2005-11-06Improved address and address mask handling, derived from pfctl stuff.Hans-Joerg Hoexer
2005-11-06Install a manpage for luna88k since we build the binary anyway.Miod Vallat
2005-11-06better handling of ip addresses, prepare for v6. Partially derived from diffHans-Joerg Hoexer
by todd@. Work in progress.
2005-11-04crank pf_state and pf_src_node byte and packet counters to u_in64_t, sinceRyan Thomas McBride
we're breaking pfsync compatibility this cycle anyways. Requested by djm@, ok henning@, 'wheee!' deraadt@
2005-11-01missing freeaddrinfo(); maticd@gmail.comTheo de Raadt
2005-10-30- SEE ALSO is sorted by section firstJason McIntyre
- new sentence, new line
2005-10-30prepare for more flexible hostname resolver. Right now just v4, more to comeHans-Joerg Hoexer
(if groups, v6, dns).
2005-10-30Xr ipcomp, sort "SEE ALSO" sectionHans-Joerg Hoexer
2005-10-30describe ipcompHans-Joerg Hoexer
2005-10-30add support for ipcomp.Hans-Joerg Hoexer
2005-10-28Make it possible to use -P on readonly memory filesystems. FromOtto Moerbeek
Alexander Hall, with some guidance by me. ok deraadt@
2005-10-28Change some TAILQ_FIRST() == NULL tests into TAILQ_EMPTY(). The firstOtto Moerbeek
form is valid, but in these cases its more clear to say what you mean. ok pat@ henning@
2005-10-28more error message cleanupHans-Joerg Hoexer