Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-19 | Add i830 support from NetBSD via patch in kernel/3150. | Todd C. Miller | |
Verified to not break i81[05] and tested on two i830s. | |||
2003-03-19 | regen | Todd C. Miller | |
2003-03-19 | s/82845G_IV/82845G_IGD/ from NetBSD | Todd C. Miller | |
2003-03-19 | bind9 & propolice | Henning Brauer | |
reminded by Andrew Basterfield <bob@cemetery.homeunix.org> | |||
2003-03-19 | inet_net_pton acts weird when it comes to multicast addresses. so pass the | Henning Brauer | |
netmask given by the OP to host_v4(), and in case it wasn't specified, do not trust inet_net_pton telling is it is a /4 but use /32. otherwise, "pass in from 224.0.0.6" suddenly became "pass in from 224.0.0.0/4", which is clearly not the desired result. inet_net_pton behaviour under investigation, using the least intrusive fix for now. found after bug report From: Julien Bordet <zejames@greyhats.org> via dhartmei ok daniel cedric | |||
2003-03-19 | kill the address token and move the host() invocation up to the host token, | Henning Brauer | |
so that host() always gets the full address to be parsed including the netmask instead of applying the netmask afterwards. this could break some edge cases and was broken since the (interface)/24 fix. new token dynaddr for, well, dynaddr, and apply an eventually given netmask afterwards in the host token just in this case. found after bug report From: Julien Bordet <zejames@greyhats.org> via dhartmei ok daniel cedric | |||
2003-03-19 | use RSA key blinding code from mod_ssl 2.8.13. differences to our own fix | Henning Brauer | |
that was already in are purely cosmetical, but this will make the future merge of mod_ssl 2.8.13 easier. | |||
2003-03-19 | test netmasks with multicast addresses | Henning Brauer | |
2003-03-19 | Fix parsing of the leases file. | Kenneth R Westerback | |
src & dst parameters to the only remaining strncpy() in the file were reversed. Use strlcpy() instead, with parameters in correct order. ok millert@. | |||
2003-03-19 | Kathmandu here too | Miod Vallat | |
2003-03-19 | Mention the Kathmandu frame buffer as being supported as one of the best | Miod Vallat | |
felines. | |||
2003-03-19 | spelling fix | David Krause | |
ok jason@ | |||
2003-03-19 | Return 0 on success, rather than falling off the end of a function prototyped | Dale Rahn | |
as returning int. | |||
2003-03-19 | add pci devices and note the bus (w/o a tbl per millert suggestion) | Michael Shalayeff | |
2003-03-19 | document the number of bytes required for btoa8 | Todd C. Miller | |
2003-03-19 | add a list of supported devices (not including the victims of the ↵ | Michael Shalayeff | |
'conversion program' as other places do not) | |||
2003-03-18 | add all missing ne2k pcmcia devices | Michael Shalayeff | |
2003-03-18 | missed a RUNDIR -> /var/run | Anil Madhavapeddy | |
2003-03-18 | - expand DBDIR, ETCDIR, RUNDIR to the actual directories to make | Anil Madhavapeddy | |
the man pages easier to read - add dhcp(8) to SEE ALSO in dhcpd(8) - rearrange SEE ALSO in section order as well as alphabetical in dhcpd(8) ok millert@, todd@ | |||
2003-03-18 | regen | Michael Shalayeff | |
2003-03-18 | match on SMC 8041TX by cis; from netbsd via mbing@nfr.net; miod@ ok | Michael Shalayeff | |
2003-03-18 | typo, Fabian Kroenner | Henning Brauer | |
2003-03-18 | Use strlcpy() / strlcat() throughout. | Todd C. Miller | |
2003-03-18 | Do not .Xr yourself, you old bugger. Come on. Give us a grin. | Miod Vallat | |
2003-03-18 | The only thing cgthree has ever accelerated is your need for a better frame | Miod Vallat | |
buffer card. | |||
2003-03-18 | Better description, and do not mention the name confusion with the HP 9837 | Miod Vallat | |
anymore. | |||
2003-03-18 | spelling typos/errors | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | duplicate words: on on, in in | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | newsentence, newline | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | duplicate words: and and, the the | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | spelling typos/errors | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | add missing rcs id and start new sentence on a new line. | David Krause | |
ok tedu@ | |||
2003-03-18 | use .Cm for flags without dash | David Krause | |
ok miod@ jmc@ | |||
2003-03-18 | xon/xoff -> Xon/Xoff; | Jason McIntyre | |
IETF ipng -> IETF IPng; NSFNet -> NSFNET; courtesy NetBSD (Igor Sobrado) ok miod@ | |||
2003-03-18 | - document the 'struct proc p' 4th argument to lockmgr | Anil Madhavapeddy | |
- put the lockmgr argument descriptions in order ok miod@, art@ | |||
2003-03-18 | ip address -> IP address; | Jason McIntyre | |
rtadvd.conf(5): positve -> positive; ok miod@ | |||
2003-03-18 | small typos; | Jason McIntyre | |
ok miod@ | |||
2003-03-18 | Restore bootable tape functionality. Previous loadfile() would never use | Miod Vallat | |
lseek(), which is not available on tapes when using the prom device routines; instead, remember our file position, seek forward by reading and discarding data, and only use lseek() in last resort for backwards seek. ok deraadt@ | |||
2003-03-18 | make rcsid const to pass gcc -Wall | Todd C. Miller | |
2003-03-18 | mention namelen in DESCRIPTION | Todd C. Miller | |
2003-03-18 | Do not capitalize "Indicates" as it does not start the sentence | Todd C. Miller | |
2003-03-17 | Fix UK keyboard layout (2 & 3 shifted from one position). | Matthieu Herrb | |
Reported by scott at porticia dot com. Ok deraadt@ | |||
2003-03-17 | arp did not long-align sockaddrs in routing messages. This led to | Henric Jungheim | |
garbage being sent to the kernel on sparc64. Problem reported and fix tested by Doug Winter (thanks). ok jason@ and millert@ | |||
2003-03-17 | If hostname != NULL, hostname is not a numeric string, and AI_NUMERICHOST | Jason Wright | |
is set, return EAI_NONAME like RFC2553 specifies. millert/itojun ok. | |||
2003-03-17 | Deal with snprintf returning -1 | Todd C. Miller | |
2003-03-17 | Use snprintf() and strlcpy() in the generated lib_keyname.c | Todd C. Miller | |
2003-03-17 | update to official patch from openssl.org; ok deraadt@, millert@ | Markus Friedl | |
2003-03-17 | use snprintf throughout | Todd C. Miller | |
2003-03-17 | OpenBSD 3.3 has setreuid/setregid. | Todd C. Miller | |
2003-03-17 | remove dupe st.patrick; from form@; millert@ ok | Michael Shalayeff | |