summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-01-26A few more BUG syscall definitions and structures. Fix (not used yet)Miod Vallat
mvmeprom_netctrl definition while there.
2004-01-26no more SIOCGIFCONF any more here eitherHenning Brauer
ok deraadt@
2004-01-26-we don't use SIOCGIFCONF any more, we use getifaddrs(). update comment.Henning Brauer
-we don't need the socket any more either; remove. ok deraadt@
2004-01-26print cis information on configured cards as pcmcia(4) does; mentioned byFederico G. Schwindt
Ed White <ed at overminder dot com>. deraadt@ ok.
2004-01-26Correct strlcpy bound.Miod Vallat
2004-01-26knf and cleanup; millert okTheo de Raadt
2004-01-26when we error out in send_sa_msg() close the file descriptor.Henning Brauer
from Patrick Latifi <pat@eyeo.org>
2004-01-26TCP_SIGNATURE enabled by defaultTheo de Raadt
2004-01-26Added 2-clause licenseNiklas Hallqvist
2004-01-26dataLen should be size_t to match l->len; ok otto@ tedu@Todd C. Miller
2004-01-26first cut at tcpmd5 setup seupport from within bgpd. works so far.Henning Brauer
with help from hshoexer@ and markus@ ok claudio@ hshoexer@ markus@
2004-01-26missing thing from Jared Yanovich;Jason McIntyre
dhartmeier@ saved me from making a mess of this;
2004-01-26syncTheo de Raadt
2004-01-26Bump load address, same as done on macppc last year.Miod Vallat
2004-01-26Make welcome banner match spamd's (is it chicken or is it fish?).Todd C. Miller
2004-01-26if one destroy fails, keep trying the othersTheo de Raadt
2004-01-26- use SIOC[GS]WAVELAN.Federico G. Schwindt
- fill ac_enaddr correctly. - put ic_myaddr back.
2004-01-26don't create/destroy interfaces in depend or regressDavid Krause
stops interfaces from being created/destroyed out of order ok dhartmei@ henning@
2004-01-26add DLT_IEEE802_11 support; from NetBSD. bump minor.Federico G. Schwindt
deraadt@ ok.
2004-01-26syncTheo de Raadt
2004-01-26having the monotonic thing as DEBUG is not going to get it fixed faster, it ↵Theo de Raadt
is just going to annoy people
2004-01-25install all the catalogs; as cvs forgot to check this file in when those ↵Michael Shalayeff
were added; millert@ ok
2004-01-25Do not BAT anything but the kernel for now.Miod Vallat
2004-01-25Put the msr fiddling in the CTXT macros, and unset PSL_IR and PSL_DR whileMiod Vallat
invoking the PPC1Bug. From drahn@ in a previous life.
2004-01-25Be less verbose in sdattach() by suppressing the display of detailedKenneth R Westerback
sense information when attempting to discover the disk size. USB 6-in-1 readers have a bunch of LUNs and otherwise produce many 'Medium Not Present' details everytime they are plugged in. Noticed by grange@. Requested by and ok deraadt@.
2004-01-25Get rid of ppc_[gs]et_msr(), use ppc_m[ft]msr() instead.Miod Vallat
2004-01-25Previously, in -w mode, for each match on a line grep would checkTodd C. Miller
to see if the match was on a word boundary. However, this missed lines where the first match was not on a word boundary but a subsequent match was. Problem originally spotted by miod@ We fix this by using the [[:<:]] and [[:>:]] character classes for the slow path and by checking the word boundaries in grep_search() for the fast path instead of doing the checks after running regexec() or grep_search(). With this change, grep passes the new regress tests 15 and 16. problem originally spotted by espie@.
2004-01-25Add missing REGRESS_TARGETS for t15 and t16Todd C. Miller
2004-01-25Two more tests; based on a failure Matthieu found with my firstTodd C. Miller
first for grep -w.
2004-01-25private copy of gmt2local from tcpdump, since tcpdump is about to startTheo de Raadt
mutating
2004-01-25according to hauppauge.com, it's spelled HauppaugeTed Unangst
2004-01-25sort options and update openssl passwd;Jason McIntyre
2004-01-25vref device vnodes early, so we don't get mismatched vrele calls.Ted Unangst
problem found, fix tested naddy@
2004-01-25random generation numbers; millert okTheo de Raadt
2004-01-25This fix was made WITHOUT RUNNING REGRESS. Henning, you are beingTheo de Raadt
extremely unfluffy, King Bula is coming for your head.
2004-01-25Fix entry point and crtbegin/crtend. slight ok espie millertDale Rahn
2004-01-25update .St sections;Jason McIntyre
2004-01-25Get rid of m88k leftovers.Miod Vallat
2004-01-25remove old .St standards and my comments;Jason McIntyre
ok deraadt@
2004-01-25syncicache() is inline from <machine/cpu.h>, no need for a different versionMiod Vallat
here.
2004-01-25use new .St macro;Jason McIntyre
2004-01-25Unused.Miod Vallat
2004-01-25add some missing standards to the .St macro;Jason McIntyre
use 4 digits for year numbers >= 2000, rather than 2; ok deraadt@
2004-01-25Various typos in comments.Miod Vallat
2004-01-25reset nonblocking flag after ConnectTimeout > 0 connect; (bugzilla #785)Damien Miller
from jclonguet AT free.fr; ok millert@
2004-01-25when dealing with structs in packets, be paranoid in case sometimeTheo de Raadt
in the future they end up being misaligned; itojun ok
2004-01-25knf and cleanup. as well avoid sending out packet information whichTheo de Raadt
contains byte-order, alignment, or padding information about the src host. while at it, fix unaligned access operations. ok itojun
2004-01-25syncTheo de Raadt
2004-01-25Crank SHMMAXPGS to 32mb; OK mickey@Todd C. Miller
2004-01-25Use %lu to print u_long values, not %d or %ld. Fixes display ofKenneth R Westerback
negative number of sectors for very large (i.e. RAID) disks. Noticed by Marco Peereboom. ok deraadt@.