Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-24 | Correct comment calling FILE *f a file descriptor. | Ray Lai | |
OK krw@. | |||
2007-02-23 | if machine has more than 100MB of physmem, default the max table entries | Theo de Raadt | |
to 200,000 instead of the conservative 100,000; ok dhartmei beck tested by ckuethe | |||
2007-02-22 | fix typo in function name, no functional change | Martin Reindl | |
2007-02-22 | Add a comment that explains, why the VID of draft 2 NAT-T includes | Hans-Joerg Hoexer | |
a traling '\n'. suggested by and ok deraadt@, jmc@ | |||
2007-02-22 | igor sobrado spotted that although we have mlinks for rdump and | Jason McIntyre | |
rrestore, the pages they point to don;t actually mention them. so make it clear that their functionality is now integral in dump and restore, and sync the text a little between the two pages; help/ok otto | |||
2007-02-22 | Always write the disklabel to disk when asked, even if it appears to | Kenneth R Westerback | |
be unchanged. Fixes PR#5209. Proper behaviour of 'q'uit still under discussion. ok ray@ millert@ ckuethe@ nick@ | |||
2007-02-21 | sort options; sync synopsis and usage() | Jason McIntyre | |
from Igor Sobrado | |||
2007-02-21 | simplify synopsis and usage(); from Igor Sobrado | Jason McIntyre | |
2007-02-20 | clarify that -f is not optional; ok otto | Jason McIntyre | |
2007-02-20 | sort the -o options; from Igor Sobrado | Jason McIntyre | |
2007-02-20 | sort the -o options; from Igor Sobrado | Jason McIntyre | |
2007-02-20 | sort options and sync usage(); from Igor Sobrado | Jason McIntyre | |
2007-02-20 | simplify synopsis and usage(); from Igor Sobrado | Jason McIntyre | |
2007-02-20 | sort options and sync synopsis; from Igor Sobrado | Jason McIntyre | |
2007-02-20 | Change hard coded numbers to sizeof(buf). Also change some | Ray Lai | |
sizeof(buf) - 1 to sizeof(buf), since fgets takes the whole buffer size. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK millert@. | |||
2007-02-20 | Change hard coded numbers to sizeof(buf). Also change some | Ray Lai | |
sizeof(buf) - 1 to sizeof(buf), since fgets takes the whole buffer size. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK millert@. | |||
2007-02-20 | knf found while fixing another bug | Theo de Raadt | |
2007-02-19 | tweak; | Jason McIntyre | |
2007-02-19 | tweak; | Jason McIntyre | |
2007-02-19 | Document NULL encryption. | Hans-Joerg Hoexer | |
2007-02-19 | isakmpd bits for ESP+NULL encryption. This is useful, when AH can | Hans-Joerg Hoexer | |
not be used (when being behind NAT). With Martin Hedenfalk <martin.hedenfalk at gmail.com>, thanks! | |||
2007-02-19 | Bits for ESP+NULL encryption. This is useful, when AH can not be | Hans-Joerg Hoexer | |
used (when being behind NAT). With Martin Hedenfalk <martin.hedenfalk at gmail.com>, thanks! ok markus@ | |||
2007-02-19 | do not display empty authkey/enckey line when -k option is not | Hans-Joerg Hoexer | |
specified. ok markus@ | |||
2007-02-19 | undo previous commit and keep the original behaviour of the parser. | Hans-Joerg Hoexer | |
asked for by deraadt@ | |||
2007-02-18 | Use sizeof(buf) instead of magic numbers. | Ray Lai | |
From Charles Longeau <chl at tuxfamily dot org> to tech@ back in November, reminded by deraadt@. OK moritz@. | |||
2007-02-18 | Pass correct buffer size. (sizeof(cfgPtr->spare_names[c]) != 256) | Ray Lai | |
OK moritz@. | |||
2007-02-18 | Don't ignore buffer size argument. | Ray Lai | |
OK millert@. | |||
2007-02-17 | silence fsck_{e2fs,ffs} when being put to work on non-existing filenames | Alexander von Gernler | |
idea from and ok pedro@ | |||
2007-02-16 | Address PR 5380: refer to DH MODP well-known group numbers. | Chad Loder | |
Thanks to sthen <at> symphytum DOT spacehopper DOT org | |||
2007-02-16 | Do not accept '\n' in quoted strings. Addresses issues noticed by | Hans-Joerg Hoexer | |
Prabhu Gurumurthy <pgurumu () gmail ! com> (http://marc.theaimsgroup.com/?l=openbsd-misc&m=116060233106902&w=2), thanks! ok markus@ cloder@ (uhm, quite some time ago) | |||
2007-02-16 | Fix a row of bugs in the code that computes the alternate superblock | Otto Moerbeek | |
locations based on the disklabel. - unit bug: disklabel size is in sectors, but superblock fs size is in fragments. - The disklabel contains the maximum superblock size, not the actual as used by newfs. - problem is that mkfs reduces track/sector and secors/track to make the cylindergroup fit in a fs block. In this case the values in the disklabel do not predict what's in the superblock. This fixes all these problems. It correctly predicts the location of all superblocks on all my filesystems I have online (sized between 100MB and 1000GB). Also tested with filesystems with different block and fragment sizes. Written this with a goto to make the diff easier to read. ok krw@ deraadt@ | |||
2007-02-15 | make read connection closed message a debug(); ok henning@ | Kevin Steves | |
2007-02-14 | spacing and a typo that fell out of the read | Theo de Raadt | |
2007-02-14 | use errwarn functions vs. syslog(); ok henning@ krw@ | Kevin Steves | |
2007-02-13 | move includes only needed in dhclient.c; ok henning@ | Kevin Steves | |
2007-02-13 | "Fix" a horrible signal handler. ckfini() breaks all the rules for | Otto Moerbeek | |
signal handlers, calling free() and not being reentrant. This commit fixes to most importamt problem (^C on the "MARK FILESYSTEM CLEAN?" question causes a double free), but actually SIGINT handling should be completely rewritten. ok millert@ deraadt@ | |||
2007-02-13 | Do some extra validation of the superblock, otherwise a corrupt | Otto Moerbeek | |
superblock might lead to crashes or other mishap. Now my fuzzed fs images no longer crash fsck_ffs. ok mickey@ pedro@ millert@ | |||
2007-02-13 | error check socket() return; ok henning@ | Kevin Steves | |
2007-02-12 | remsize must be signed to avoid wrapping around to some huge number. | Otto Moerbeek | |
Solves a case were fsck_ffs was causing a segv. If it didn't do that it would have mangled the filesystem later, very probably. Diff from FreeBSD; ok millert@ pedro@ | |||
2007-02-12 | detect truncation of block number, which can happen which trashed | Otto Moerbeek | |
inodes; ok pedro@ millert@ | |||
2007-02-12 | max partition letter is 'a' + MAXPARTITIONS - 1, not 'h'. ok (and | Otto Moerbeek | |
help) miod@ | |||
2007-02-09 | fix a fd leak that happens whe checking multiple file systems and some | Otto Moerbeek | |
of them are clean. ok pedro@ millert@ | |||
2007-02-09 | pfctl_clear_rule_counters() is not needed any more | Henning Brauer | |
2007-02-09 | use DIOCGETRULE ioctl & action set to PF_GET_CLR_CNTR to clear counters | Henning Brauer | |
with -z instead of DIOCCLRRULECTRS. Unbreaks -z with anchors and makes the read & reset operation atomic. innstrument pfctl_show_rules() to clear counters while reading rules and add a new output format for it, showing nothing, if only resetting counters without actually displaying them is requested. minor cleanups on the way. ok dhartmei & agreement from theo and ryan | |||
2007-02-08 | Plug some mem leaks that occur when checking multiple file systems in a | Otto Moerbeek | |
row. ok beck@ pedro@ millert@ | |||
2007-02-08 | A corrrup inode might lead to preposterous dir sizes. So check the | Otto Moerbeek | |
size to avoid a negative lastbn which might cause a segv or heap corruption. With help from mickey@; ok mickey@ pedro@ millert@ | |||
2007-02-06 | fix some dodgy displays; | Jason McIntyre | |
2007-02-06 | remove -j from usage(); | Jason McIntyre | |
2007-02-03 | in decide_address_family(), only limit a rule to a specific address family | Daniel Hartmeier | |
when ALL entries have this specific AF (when even just one entry has no specific AF, use any). found by Maurice Janssen, ok henning@ | |||
2007-02-01 | Don't count ethernet as overhead for UDP packet constuction. Gives | Kenneth R Westerback | |
14 more bytes of option space! A change ISC made a long time ago. ok stevesk@ (DHCP) canacar@ (bpf) |