Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2003-10-26 | Work around a problem with shared libraries named as libX-A.B.so.X.Y. | 1 | -3/+9 | ||
Without this patch, the standard major:minor version matching failed. ok brad@ | |||||
2003-10-26 | per deraadt@ request, don't permit insanely large stackgap values. | 1 | -2/+2 | ||
2003-10-26 | fix partition selection to allow all partitions to be grown. | 2 | -5/+10 | ||
report by Mitja Muzenic <mitja at muzenic.net> | |||||
2003-10-26 | remove obsolete sections about limit of line length; | 2 | -16/+2 | ||
thanks Eric Jackson for helping me fix this. | |||||
2003-10-26 | correct bad dprintf, from Moritz Jodeit <moritz at jodeit.org> | 1 | -2/+2 | ||
2003-10-26 | Use __packed attribute to cleanup the '#define XXX' stuff in here. | 2 | -33/+29 | ||
Also stops the struct having a double ;; in variable declarations, which breaks a few non-gcc parsers. millert@ ok | |||||
2003-10-26 | add a __packed #define to map to __attribute__((__packed__)) on gcc>=2.7 | 1 | -1/+7 | ||
2003-10-26 | rename 'supported' static var in userauth_gssapi() to 'gss_supported' | 1 | -13/+13 | ||
to avoid shadowing the global version. markus@ ok | |||||
2003-10-26 | Uhm, disable debugging my default, even if it probably is good to | 1 | -2/+1 | ||
run with it enabled for now. | |||||
2003-10-26 | Add line for wi@usb, currently commented out, for development and testing only. | 2 | -2/+4 | ||
2003-10-26 | Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress, | 9 | -50/+2249 | ||
it does not yet handle bulk data copies or hostap mode. Only one model currently supported, however driver may support other PRISM based adapters. ok millert@ fgsch@ | |||||
2003-10-26 | sync | 2 | -4/+11 | ||
2003-10-26 | Add netgear MA111 USB wifi. | 1 | -1/+2 | ||
2003-10-26 | More ansi/knf missed the first time around. | 1 | -15/+10 | ||
2003-10-26 | update for crl and crl2pkcs7; | 1 | -64/+66 | ||
2003-10-26 | Oops, I'm on drugs. Revert and blame gremlins for the state of my tree. | 1 | -3/+3 | ||
2003-10-26 | typos from Jared Yanovich; | 7 | -16/+16 | ||
2003-10-26 | Unbrek after recent wdc changes. | 1 | -3/+3 | ||
2003-10-26 | Real atomic locks for m88k. | 1 | -3/+41 | ||
2003-10-26 | Print error registers values in debug message after reset too. | 1 | -5/+7 | ||
2003-10-26 | Device reset improvements: | 1 | -9/+15 | ||
- put the reset protocol itself in the separate function __wdcdo_reset() so we don't need anymore to keep in sync two reset code paths; - change the reset protocol to something like FreeBSD and NetBSD do, this fixes slave ATA drive detect with weird ATAPI master (reported by fgsch@); Discussed with costa@. Tested by me, fgsch@, millert@, canacar@. | |||||
2003-10-26 | cosmetic change, people read preadd as p_read_d, so make it explicit: | 1 | -6/+6 | ||
preadd -> pre_add reallyadd -> really_add | |||||
2003-10-26 | Partial synch with reality, ok sturm. | 2 | -155/+14 | ||
2003-10-26 | "advbase" is the correct operand. | 1 | -2/+2 | ||
diff from Daniel Cavanagh <nofsk@vtown.com.au> | |||||
2003-10-25 | OpenSSL generates DNs with emailAddress, not Email. | 1 | -2/+2 | ||
2003-10-25 | Build state search indexes directly on pf_state instead of pf_tree_node. | 3 | -257/+350 | ||
This saves more than 30% memory on state entries, and simplifies the state insertion and removal code as well. NOTE: This changes the pf API; userland tools must be updated to match. ok henning@ dhartmei@ | |||||
2003-10-25 | #undef p2 in carp_stats() | 1 | -2/+3 | ||
Pointed out by Max Laier | |||||
2003-10-25 | "goto bad" on error with carp_input, instead of simply returning. | 2 | -4/+4 | ||
Fixes leakage of mbufs on error. Pointed out by Max Laier. | |||||
2003-10-25 | don't destroy old pointer if realloc fails; from Daniel Lucq; ok deraadt@ | 2 | -6/+14 | ||
2003-10-25 | Support the TI1410 Cardbus bridge found in some apple laptops. ok brad@ | 1 | -1/+11 | ||
2003-10-25 | additional hash for local port; improves speed of implicit bind | 2 | -8/+20 | ||
from >1000K cpu cycles to 20-30K for 18000 sockets on i386; test+feedback by Claudio Jeker; ok itojun@; [make sure you rebuild netstat/systat, too] | |||||
2003-10-25 | precompute most of hmac; fix size for md; ok mcbride | 1 | -29/+40 | ||
2003-10-25 | correct description of ip.porthifirst - oops! | 1 | -2/+2 | ||
from Daniel Cavanagh; | |||||
2003-10-25 | fix possessive; from Jared Yanovich; | 1 | -2/+2 | ||
2003-10-25 | bzcat2 -> bzcat; from Jared Yanovich; | 1 | -2/+2 | ||
2003-10-25 | receiveing -> receiving; from Jared Yanovich; | 1 | -2/+2 | ||
2003-10-25 | adddress -> address; from Jared Yanovich; | 1 | -2/+2 | ||
2003-10-25 | controlls -> controls; from Jared Yanovich; | 1 | -2/+2 | ||
2003-10-25 | add list of games available; update FILES; | 1 | -12/+241 | ||
ok deraadt@ | |||||
2003-10-24 | fix an occasional hang noticed by mpech@ when a SIGHUP | 1 | -10/+34 | ||
is received after the configuration is modified. tested by mpech@, ok avsm@ | |||||
2003-10-24 | Remove dead code. | 1 | -60/+6 | ||
2003-10-24 | dont compare int to NULL, millert@ ok | 7 | -24/+24 | ||
2003-10-24 | If cons_backlight_available is not set, cons_brightness will not be valid, | 1 | -5/+8 | ||
return -1 to indicate so. same as WSDISPLAYIO_PARAM_BACKLIGHT. | |||||
2003-10-24 | IPKDB has never been supported in OpenBSD/powerpc/macppc delete this | 2 | -173/+4 | ||
old unused code. Remove very old 'where' debugging references. ANSI a previously missed function. | |||||
2003-10-24 | consistently use $ext_if / $int_if in the examples | 1 | -28/+29 | ||
from jared r r spiegel <jrrs@ice-nine.org> ok canacar@ jmc@ | |||||
2003-10-24 | style(9)ed panics, from tom cosgrove. | 2 | -5/+5 | ||
2003-10-24 | refactor stackgap sysctl. prompted by a bug report from Michael Coulter. | 1 | -11/+10 | ||
ok deraadt@ markus@ | |||||
2003-10-24 | No \n in panic() messages... | 2 | -10/+10 | ||
2003-10-24 | initgroups() before chroot(), found by Daniel Lucq | 1 | -3/+9 | ||
ok deraadt@ | |||||
2003-10-24 | small update for CIPHERS; | 1 | -15/+15 | ||