summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-03-21install a powerhook to restore the AC97 state after suspend;Jason Wright
aditya at dsl dot cis dot upenn dot edu via pr 3165; ok millert
2003-03-21Fix default facility when none is specified (should be LOG_USER,Todd C. Miller
was LOG_UUCP due to a bug); Javier Kohen
2003-03-21change 'netstat -m' output from:Philipp Buehler
0/28 mapped pages in use to 0/14/1024 mbuf cluster pages in use (current/peak/max) ok henning@, millert@
2003-03-21RegenMiod Vallat
2003-03-21its obwous``renassiance'' apeers too be a spelink mistaek.Miod Vallat
2003-03-21Fix %mem output in ps, sysctl method of getting mempages returns numberDale Rahn
of bytes of memory, not number of pages of memory. Divide the result by pagesize. PR 3164 ok david@ millert@
2003-03-21Fix some typos in comments; Patrick LatifiTodd C. Miller
2003-03-21document [initiator-id] section; richb@timestone.com.au; ok ho@, jmc@Markus Friedl
2003-03-21Now that ahc has the necessary endian fixes, enable it on macppc.Dale Rahn
2003-03-21Endian fixes for ahc driver. These are a no-op for i386. Now works on macppc.Dale Rahn
ok millert@ miod@ krw@
2003-03-21- Add missing "\n" to some pf_table.c printf()Cedric Berger
- Fix two problems with pfr_update_stats(). Filtering was done properly, only stats were wrong. People should upgrade their kernel if: - They use bidirectional rules (without "in" or "out") with tables. - They use tables in negated statements, like "block from !<foo>" Thanks to David Krause for discovering the problem. Ok dhartmei@ henning@
2003-03-21SyncMiod Vallat
2003-03-21Add a new option to disable krb4 cross-realm authentication, disabled byHans Insulander
default. This works around a recently found vulnerability in the krb4 protocol, see http://web.mit.edu/kerberos/www/advisories/MITKRB5-SA-2003-004-krb4.txt Patch created by adopting the changes in heimdal-0.5.2, with invaluable help provided by lha@stacken.kth.se and janj@stacken.kth.se. ok beck@ miod@
2003-03-21Disable krb4 kdc; it has no functionality (except bugs) that theHans Insulander
krb5 kdc doesn't have.
2003-03-21move Netra 1400/1405 to the supported listBrad Smith
ok jason
2003-03-20The current code tries to use the same field in the interrupt handler asHenric Jungheim
both a "next" pointer for a singly-linked list and as an in-use flag. This obviously does not work all that well. This change adds a separate ih_busy flag to mark the handler as in-use, leaving ih_pending for use by the list code. Testing by *many* (thanks). ok miod jason
2003-03-20The '%' lines are used for the ports tree stuff too; noted by sturm@Todd C. Miller
2003-03-20Use csh syntax for environment variable setting since root's shell is cshTodd C. Miller
Replace bulletted lists with command lines starting with either '%' for user commands or '#' for root commands. Also somce other minor formatting fixes. marco@ OK
2003-03-20enclose X${lpd_flags} in quotation marks, as it could carry more thanNikolay Sturm
one argument. OK miod@, millert@, henning@, markus@, fries@, tdeval@
2003-03-20Compute linebytes and such earlier and use them to decide how muchJason Wright
memory to map. (fixes the TGX+ running in 1280x1024x8 mode). ok miod, millert.
2003-03-20typos;Jason McIntyre
from NetBSD (Soren Jacobsen) ok millert@
2003-03-20typos;Jason McIntyre
ok millert@
2003-03-20bump miniroot size a bit; ok millert; fixes sparc64/3161Jason Wright
2003-03-20Fix boolean thinko in SIGCHLD reaper and call reapchild after sendingTodd C. Miller
mail instead of doing a conditional sudo_waitpid.
2003-03-20add missing rcs idsDavid Krause
ok millert@
2003-03-20cmdline options and descriptions in alphabetical order in usage() and manpageDavid Krause
add arguments to the flags that take them in the DESCRIPTION add "inet" to the rdr rule example to match etc/pf.conf example ok dhartmei@ henning@
2003-03-20cmdline options in alphabetical order in usage() and manpageDavid Krause
and make sure they are consistent ok dhartmei@ henning@
2003-03-20replace some .Pp inside .Bd -literal block with empty lineDavid Krause
new sentence, new line fix login.conf indentation ok jmc@
2003-03-20replace some .Pp inside .Bd -literal block with empty lineDavid Krause
remove an uneeded .Pp kill whitespace at eol ok jmc@
2003-03-20duplicate word: to toDavid Krause
spelling fix: chosen ok jakob@
2003-03-20sprintf -> snprintf; ok millert@, henning@Marco S Hyman
2003-03-19Fix for Klima-Pokorny-Rosa attack on RSA in SSL/TLS, seeMarkus Friedl
http://marc.theaimsgroup.com/?l=bugtraq&m=104811162730834&w=2
2003-03-19regenTodd C. Miller
2003-03-19Add ProSavage DDR video; Nick HollandTodd C. Miller
2003-03-19add more auich devicesMichael Shalayeff
2003-03-19it does nforce2 as well nowMichael Shalayeff
2003-03-19regenMichael Shalayeff
2003-03-19match on nvidia nforce2; from netbsd@ via wayne@epipe.com.au; miod@ okMichael Shalayeff
2003-03-19Add 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-19regenTodd C. Miller
2003-03-19s/82845G_IV/82845G_IGD/ from NetBSDTodd C. Miller
2003-03-19bind9 & propoliceHenning Brauer
reminded by Andrew Basterfield <bob@cemetery.homeunix.org>
2003-03-19inet_net_pton acts weird when it comes to multicast addresses. so pass theHenning 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-19kill 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-19use RSA key blinding code from mod_ssl 2.8.13. differences to our own fixHenning Brauer
that was already in are purely cosmetical, but this will make the future merge of mod_ssl 2.8.13 easier.
2003-03-19test netmasks with multicast addressesHenning Brauer
2003-03-19Fix 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-19Kathmandu here tooMiod Vallat
2003-03-19Mention the Kathmandu frame buffer as being supported as one of the bestMiod Vallat
felines.
2003-03-19spelling fixDavid Krause
ok jason@