summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-03-14fix BC idiocy and uncle albert pasto repairMichael Shalayeff
2003-03-14sync with libc versionTodd C. Miller
o ANSI function header o correct function comment o put type on its own line o swap the order of loop invariant when searching for end of dst
2003-03-14ANSI function headersTodd C. Miller
2003-03-14Put return type on its own line like it belong and use ANSI function header.Todd C. Miller
2003-03-14Correctly flag out radix_node entries with RNF_ROOT flag set: this is notCedric Berger
a match. Before that patch, an IP packet with source or dest address of 0.0.0.0 could corrupt the kernel. People filtering DHCP packets on their firewall using tables should upgrade their kernel now. Thanks to Chris Cappuccio for the good bug report. Ok dhartmei@ henning@
2003-03-14better document how getopts handles options;Jason McIntyre
plus typos; from J.A. Neitzel; Fixes PR 3141; ok millert@
2003-03-14document that the i386* functions have to be compiled with -li386;Jason McIntyre
from er, Charlie Root; Fixes PR 3114; ok tholo@
2003-03-14removed references to non-existent radius.conf(5);Jason McIntyre
from Adrian Close; fixes PR 2558; ok millert@
2003-03-14spl police.Miod Vallat
2003-03-14document that sigwait() needs to be linked with -pthread;Jason McIntyre
from Mike Neuman; closes PR 3030 ok marc@
2003-03-14typos;Jason McIntyre
audio(4): ok naddy@ cardbus(4): ok deraadt@
2003-03-14tweaks;Jason McIntyre
echos -> echoes from millert@ ok millert@
2003-03-14RSA blinding for private keys here too.Hakan Olsson
2003-03-14Add RSA blinding for private keys. markus@ ok.Hakan Olsson
2003-03-14Zombies on the bridge, captain.Miod Vallat
2003-03-14remove a dupeMichael Shalayeff
2003-03-14unkown -> unknownmargarida
ok millert@
2003-03-14Replace strcpy() of a constant w/ strlcpy() for easy grepping;Todd C. Miller
from Raymond M Schneider
2003-03-14This goes with the at.c changeTodd C. Miller
2003-03-14tweak; millert okTheo de Raadt
2003-03-13fix printing of "" and other weird chars. from alexander@beard.seTed Unangst
closes pr3146 and pr3147 ok millert@
2003-03-13Remove duplicate Amoeba entries.Miod Vallat
2003-03-13Use strdup() instead of doing it by hand; deraadt@ OKTodd C. Miller
2003-03-13Use the return value of strcpy() to detect ENAMETOOLONG instead ofTodd C. Miller
doing an extra strlen; deraadt@ OK
2003-03-13Always protect pv_unlink4_4c() with splvm(). This suddenly makes sun4/4cMiod Vallat
feel much much happier. ok deraadt@
2003-03-13more strlcpy; ok beck, and others pointed out a glitchTheo de Raadt
2003-03-13clarify how mappings work. closes pr2138Ted Unangst
ok jmc@
2003-03-13Stash uid and mode in struct at so we don't need to pass around aTodd C. Miller
struct statbuf *. Fixes a bug where atq reports all jobs as being owned by the owner of the last job in the queue. This is fallout from when I added sorting as per the historic BSD atq.
2003-03-13make spamd-setup/spamd use/require a reserved source port for theBob Beck
configuration connection.
2003-03-13syncTheo de Raadt
2003-03-13print LZS-only and such for the cards (more clear than saying "disabled" for ↵Jason Wright
the 9751 which isn't true these days)
2003-03-13mention hifn 9751Jason Wright
2003-03-139751 is actually useful these days.Jason Wright
2003-03-13and bandwidth is bits per secondHenning Brauer
2003-03-13bits not bytes; fk@spoiled.orgTheo de Raadt
2003-03-13Plug slow memory leak (radix_mask structure).Cedric Berger
tested on i386 by me and Daniel on macppc. ok dhartmei@ henning@
2003-03-13scale the red thresholds according to the queue limit.Kenjiro Cho
the min and max thresholds are set to 10% and 30% of the queue limit.
2003-03-13remove an unused function prototype.Kenjiro Cho
from KAME
2003-03-131 byte underflow; from tdevalTheo de Raadt
2003-03-13a few more strlcy; ok from beck & hoTheo de Raadt
2003-03-13a few more strlcpyTheo de Raadt
2003-03-13Slightly better wording or layoutMiod Vallat
2003-03-13anotherAlexander Yurchenko
2003-03-13correct table usage in rdr example, spotted by toddHenning Brauer
2003-03-13Might as well do blinding here too.Hakan Olsson
2003-03-13ssh-agent is similar to ssh-keysign (allows other processes to useMarkus Friedl
private rsa keys). however, it gets key over socket and not from a file, so we have to do blinding here as well.
2003-03-13move RSA_blinding_on to generic key load methodMarkus Friedl
2003-03-13anotherHenning Brauer
2003-03-13Avoid "j += snprintf()". niklas@ ok.Hakan Olsson
2003-03-13my style: length is size_t, not int.Marc Espie