summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-07-04catch malloc failures, my changes; found by cloder@acm.orgTheo de Raadt
2002-07-04Various tga hacks:Miod Vallat
- some KNF touches - use simpler constructs - do not forget to make use of the tga interrupt when it is enabled (speeds up X11 startup and shutdown, hi matthieu!) - implement the wscons screen burner facility
2002-07-03KNFTheo de Raadt
2002-07-03Xr fixes; from PR 2794Miod Vallat
2002-07-03Xr fixups, mostly from PR 2793Miod Vallat
2002-07-03ansi on a file which idiots believe is not here anymoreTheo de Raadt
2002-07-03check for malloc failure; reported by cloder@acm.orgTheo de Raadt
2002-07-03missing or incorrect checks for malloc failure; cloder@acm.orgTheo de Raadt
2002-07-03if localid is too long, abort; found by cloder@acm.orgTheo de Raadt
2002-07-03ansiTheo de Raadt
2002-07-03ansiTheo de Raadt
2002-07-03syncTheo de Raadt
2002-07-03Change all variables definitions (int foo) in sys/sys/*.h to variableMiod Vallat
declarations (extern int foo), and compensate in the appropriate locations.
2002-07-03Another missing call to AMI_UNLOCK_API(). Fixes SPL NOT LOWERED errors seenAaron Campbell
when trying to mount/unmount a 900GB hardware RAID filesystem on an AMI card.
2002-07-03Remove unused function parameter 'cache' from nfs_repheadNathan Binkert
ok costa@
2002-07-03If we've given a domain name prefix as the authentication name, stripbrian
it off before passing it on to the RADIUS server for authentication.
2002-07-03remove a useless {} that was there for "historical reasons" and only servedVincent Labrecque
to make the code go too far to the right.
2002-07-03 add a missing newline to an error message.Vincent Labrecque
from Jean-Francois Brousseau <krapht@secureops.com> ok deraadt@
2002-07-03syncTodd C. Miller
2002-07-03New config for the OpenBSD mailing list server. Two separate daemonsTodd C. Miller
are used; one for incoming messages on port 25 and a stripped down queueing-only config on localhost port 24 fed by the mailing list exploder. Actual delivery is handled by persistent queue runners.
2002-07-03No need to have this in cvs--the OpenBSD list config is basically the same.Todd C. Miller
2002-07-03re-enable ssh-keysign's sbit, but make ssh-keysign read /etc/ssh/ssh_configMarkus Friedl
and exit if HostbasedAuthentication is disabled globally. based on discussions with deraadt, itojun and sommerfeld; ok itojun@
2002-07-03use RSA_blinding_on() for rsa hostkeys (suggested by Bill Sommerfeld)Markus Friedl
in order to avoid a possible Kocher timing attack pointed out by Charles Hannum; ok provos@
2002-07-03convert to ansi. suddenly realise that means yet another function is aTheo de Raadt
signal handler in some cases, and make it cope with the termination race.
2002-07-03code bloat in ahc causes adv to die. We will now pressure smurph to ↵Theo de Raadt
de-bloat new ahc, so that this can return
2002-07-03 a few missing tests for malloc()'s return value.Vincent Labrecque
ok art@
2002-07-03sis(4) works on alpha, so move it out of the UNTESTED section.Aaron Campbell
2002-07-03avoid dd. do not ask me whyTheo de Raadt
2002-07-03fix a null deref in sysctl_iflist()Michael Shalayeff
2002-07-03Fix some major brain damage where I was performing arithmetic on aAaron Campbell
physical address with a virtual address; thanks art@. Now sis(4) compiles and works on alpha.
2002-07-03But when denormalizing we need the normalized length, too as well as the ↵Jason Wright
destination length.
2002-07-03result only needs to be as big as the number of real bits in the modulusJason Wright
2002-07-02make it compile w/ ipsec and no pf ; smth that was left for homeworkMichael Shalayeff
2002-07-02Check malloc() return value; Chad LoderTodd C. Miller
2002-07-02inital -> initialNathan Binkert
2002-07-02* use lostconn() as the SIGALRM handler in receive_data() as originallyDan Harnett
done by downsj@ in revision 1.54. * some -Wall cleanup - only declare check_host() if TCPWRAPPERS is defined. - use socklen_t where appropriate instead of int (pointer signedness warnings). - {u_}char * pointer signedness warnings. ok millert@
2002-07-02bus_dma'ify, works on an SiS900 and a Netgear FA411. Thanks to wilfried@ forAaron Campbell
testing.
2002-07-02Remove whitespace at eolbrian
2002-07-02Fix PIO write state machine. This has been totally broken since 2.5, but sinceConstantine Sapuntzakis
this code path is only executed for IOCTLs, and all of our IOCTLs only read from the device, nobody noticed. Thanks to grange and gluk for finding this one.
2002-07-02use hash.h for nfs_hash as well as namei's hashEric Jackson
ok art@ costa@
2002-07-02Add missing copyrightThorsten Lockert
2002-07-02missing priority argument in example; ok millert@Kevin Steves
2002-07-02Kill setjmp/longjmp from a signal handler. All we really need isTodd C. Miller
to use sigaction() w/o SA_RESTART to allow ^C to interrupt motd(). deraadt@ OK.
2002-07-02KNF and signal race fixes; millert okTheo de Raadt
2002-07-02Don't trust the MPPE key lengths passed back from the RADIUS server.brian
Instead, use the correct values based on the number of bits actually negotiated.
2002-07-02Remove some misleading/wrong diagnosticsbrian
2002-07-01Ensure scb is setup correctly. Add debugging info.Steve Murphree
2002-07-01Language improvements and line wrapping fixes, from Moritz JodeitDaniel Hartmeier
2002-07-01Don't abuse VM_PROT_ALL. Use VM_PROT_READ|VM_PROT_WRITE here.Artur Grabowski
We'll never want to exec code in malloc mappings.
2002-07-01Fix really long standing bug with fetching address cache entries:Jason Wright
handle ifbac_len == 0 as per the man page; Benny Holmgren <bigfoot@astrakan.hig.se>