summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-09-26select to pollMichael Shalayeff
2003-09-26put 64bit macros/functions documentation back.Federico G. Schwindt
2003-09-26avoid strdup. and, while at it, fix a file leak at sigexit time spottedTheo de Raadt
by ish
2003-09-26use ereallocTheo de Raadt
2003-09-26use emalloc and watch for strdup failureTheo de Raadt
2003-09-26use emallocTheo de Raadt
2003-09-26No need to include non-standard machine/endian.h header sinceTodd C. Miller
sys/types does that for us. Add a STANDARDS section that says what is and is not standard. OK fgsch@
2003-09-26for %#s, # is the amount of input string, not the amount of output string.Theo de Raadt
hence # must be 1 less than the size of the storage buffer. yes, we've known this for a long time, but it is not clearly documented and half the code out there does not use n-1! whoever designed this needs to be tortured.
2003-09-26Walking up to a firewall box which had the console logged in, to seeTheo de Raadt
the entire screen full of "Reopened logfile" is CLEAR and OBVIOUS reason that that message is UTTERLY USELESS and is wiping important stuff off the screen.
2003-09-26check strdup failure; ok anil millertTheo de Raadt
2003-09-26can free(NULL)Theo de Raadt
2003-09-26Fix off-by-ones in format string for 's' specifier; millert@, deraadt@ okAaron Campbell
2003-09-26syncOtto Moerbeek
ok deraadt@
2003-09-26free(NULL) works; jjy2+@pitt.eduTheo de Raadt
2003-09-26correct scanf sizes; anil aaron okTheo de Raadt
2003-09-26add bounds to sscanf, millert@Anil Madhavapeddy
2003-09-26Move statistics counters from individual pf_test_<proto>() andRyan Thomas McBride
pf_test_state_<proto>() to pf_test() and pf_test6(). Reduce code redundancy, and fix the following bugs: - ICMP packets were not being accounted for correctly (missing statistics code in pf_test_state_icmp() - Some packets were not being counted in the loginterface statistics NOTE: Under some situations with route-to, packets may get counted once on the original interface, and once on the pf-routed interface. This can be dealt with by rules which specify the each interface explicitly. ok cedric@, henning@
2003-09-26File args are optional. Document strings and \<newline><whitespace> inOtto Moerbeek
numbers. ok jmc@
2003-09-26don't listen to INADDR_ANY if Listen-on is specified.Cedric Berger
patch from markus@, ok ho@
2003-09-26cleanup, and an ammendment from otto@;Jason McIntyre
2003-09-26off by one in fscanf; from aaron@Anil Madhavapeddy
2003-09-26.Xr mount_ntfs;Jason McIntyre
2003-09-26<> -> .Aq;Jason McIntyre
2003-09-26no need to set the listen sockets to non-block; ok deraadt@Markus Friedl
2003-09-26Enable dc(1) and bc(1) regressionsOtto Moerbeek
2003-09-26Disable bc (and dc).Otto Moerbeek
ok deraadt@
2003-09-26Enable new bc(1) and dc(1).Otto Moerbeek
ok deraadt@
2003-09-26Add a line saying we should conform to Posix. Also warn we do not haveOtto Moerbeek
non-portable extensions from GNU bc(1).
2003-09-26erm, committing to teh right repository helps sometimes.Henning Brauer
don't reject usernames > 15 chars; username is not used as ruleset name any more, thus, this restriction is gone. PR3491, fix from dhartmei
2003-09-26Check strdup() return value, as pointed out by deraadt@Otto Moerbeek
2003-09-26realloc tuning; pvalchev okTheo de Raadt
2003-09-26spacingTheo de Raadt
2003-09-26spacingTheo de Raadt
2003-09-26RegenMiod Vallat
2003-09-26Add majors and devsw entries for the missing scsi devices on mvme*8k.Miod Vallat
2003-09-26regenMichael Shalayeff
2003-09-26fix buffer size; leonard+gnats@itee.uq.edu.auTheo de Raadt
2003-09-26fix columns; sahara@surt.netTheo de Raadt
2003-09-26realloc fixes; ok deraadt millertPeter Valchev
2003-09-26It is safe to pass free() a NULL pointer since C89; update example toTodd C. Miller
this effect. OK deraadt@ pvalchev@
2003-09-26make accept failures not globally fatal.Bob Beck
ok deraadt@
2003-09-26retry for ECONNABORTED tooTheo de Raadt
2003-09-26better mtd comment; from form@Michael Shalayeff
2003-09-26spelling, from jolan, and ispell.Bob Beck
2003-09-26realloc properly; ok jasonTheo de Raadt
2003-09-267955/7596 rng works (it's just like the 7951, actually)Jason Wright
2003-09-26Add recipes fortune file. Start with the Hackathon barbeque recipesBob Beck
ok deraadt@, mcbride@ (earlier version).
2003-09-26use a much more random salt; prompted by ast@domdv.deTheo de Raadt
2003-09-26free(NULL) allowedTheo de Raadt
2003-09-26reading the record skip the remainder of data we do not need. we are still ↵Michael Shalayeff
screwed on writes though