Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-10-24 | nlist does no aout no more, fuget about som too | Michael Shalayeff | |
2002-10-24 | use loadfile | Michael Shalayeff | |
2002-10-24 | ksyms is majopr 25 not 29 | Michael Shalayeff | |
2002-10-24 | Use va_copy() for varargs assignemnt. va_copy() is standard with C99 | Dale Rahn | |
and gcc3.2 requires this on powerpc. | |||
2002-10-24 | Add va_copy() as necessary for powerpc, same protections as was added | Dale Rahn | |
recently on other architectures. | |||
2002-10-24 | sync | Michael Shalayeff | |
2002-10-24 | be more picky about arg parsing. check ERANGE on strtoul. sync w/kame. | Jun-ichiro itojun Hagino | |
2002-10-24 | regen | Michael Shalayeff | |
2002-10-24 | another csa 5300 | Michael Shalayeff | |
2002-10-24 | regen | Michael Shalayeff | |
2002-10-24 | csa 5i on dl380; from philipp@ | Michael Shalayeff | |
2002-10-24 | Remove some old if 0/if 1 code, it is pointless to keep this in. | Dale Rahn | |
2002-10-23 | remove 0x in front of %p -- not needed | Marco S Hyman | |
2002-10-23 | Replace tmpnam() with mkstemp() to avoid possible /tmp race. | Todd C. Miller | |
Problem found by David Wagner (among others). | |||
2002-10-23 | Add a trivial va_copy() macro to all architectures but powerpc | Todd C. Miller | |
(which I will leave for Dale since it needs special handling). From NetBSD (and same as sparc64). espie@ OK | |||
2002-10-23 | Remove redefinition of NULL; pjanzen@ OK | Todd C. Miller | |
2002-10-23 | Move a cast from LHS to RHS to quiet a "cast from pointer to integer | Todd C. Miller | |
of different size" warning on 64-bit platforms. | |||
2002-10-23 | mips archdep stuff update while waiting for ok on mi | Per Fogelstrom | |
2002-10-23 | %u for u_int | Markus Friedl | |
2002-10-23 | use %u for u_int | Markus Friedl | |
2002-10-23 | sync | Theo de Raadt | |
2002-10-23 | integer overflow cleanup - convert to u_long so strtoul can handle comparisons | Mark Grimes | |
itojun@ ok | |||
2002-10-22 | Make wi_keydat in struct wi_key 13 bytes, not 14. This is not a | Todd C. Miller | |
NUL-terminated string and 13 bytes is what you need for a 104-bit WEP key. This fixes an off-by-one comparison in wi_set_nwkey(). mickey@ OK. | |||
2002-10-22 | do not force single-user; pt out by fries@ | Michael Shalayeff | |
2002-10-22 | %ul -> %lu | Mike Pechkin | |
dhartmei@ ok | |||
2002-10-22 | More conversion of "int af" and "u_int8_t af" declarations and function | Ryan Thomas McBride | |
arguments to the more correct and descriptive "sa_family_t af" ok dhartmei@ henning@ | |||
2002-10-22 | Convert "int af" and "u_int8_t af" declarations and function arguments | Ryan Thomas McBride | |
to the more correct and descriptive "sa_family_t af" ok dhartmei@ henning@ | |||
2002-10-22 | Update for new semantics of set_ipmask (netmask is applied immediately | Camiel Dobbelaar | |
to an address by pfctl). | |||
2002-10-22 | Rename ipmask to set_ipmask and add some functionality: the netmask | Camiel Dobbelaar | |
is applied immediately to the address. This way, the parsed rules output shows exactly which bits of an address are significant for a match and errors due to wrong netmasks can be spotted more easily. Example: $ pfctl -nvf - pass in on lo0 from 172.17.0.0/12 to any @0 pass in on lo0 inet from 172.16.0.0/12 to any idea refined by dhartmei@ ok frantzen@ henning@ | |||
2002-10-22 | Remove a part that did sneak in that wasn't meant to be commited yet. | Artur Grabowski | |
2002-10-22 | check the correct return value from ifunit() | Ryan Thomas McBride | |
(returns ifp, not ifname) ok dhartmei@ ish@ camield@ henning@ | |||
2002-10-21 | Check for null pointer before deref in info output. Based upon | Marco S Hyman | |
a freebsd patch forwarded to me by millert@ (thanks!). Change also applied to uthread_info.c even though we do not use it | |||
2002-10-21 | ANSI | Artur Grabowski | |
2002-10-21 | Two problems. | Artur Grabowski | |
First we check for running out of processes (nprocs variable) before we continue with the fork, then we do various calls that might sleep (and allow other forks to start and pass that check), then we increase that variable. This could allow processes to be created past the limit. Second is that we don't decrease the the process count for this uid if the stack allocation fails. So a user could run out of processes he's allowed to run without actually having them. miod@ ok | |||
2002-10-21 | forgot dpadd | Michael Shalayeff | |
2002-10-21 | libs are listed w/ LDADD not LDFLAGS | Michael Shalayeff | |
2002-10-21 | do not use an absolute path in include; dhartmei@ ok | Michael Shalayeff | |
2002-10-21 | manual media setting no longer needed for the 21145 | Henning Brauer | |
2002-10-21 | ugly hack to make the 21145 work without manual media setting. | Henning Brauer | |
many many many thanks to nick@, who booted no less then 8 kernels for me today while hacking on that (and this includes going downstairs to the basement and up again 8 times...) ok jason@ | |||
2002-10-21 | reversed condition checking for sig*jmp(, savemask) | Michael Shalayeff | |
2002-10-21 | deal w/ longjmp(, 0) | Michael Shalayeff | |
2002-10-21 | fix remote exploit in kadmind; from lha@stacken.kth.se. ok hin@ | Jakob Schlyter | |
2002-10-21 | regression tests should test for proper operation, not what the code | Marco S Hyman | |
being tested does. A signal should only be delivered to one thread. | |||
2002-10-21 | Clean up the siginfo test. pthreads siginfo delivery code still | Marco S Hyman | |
being tested. | |||
2002-10-21 | Add new tests | Marco S Hyman | |
2002-10-21 | Add test for non-deferred signal handling in threads. pthreads code | Marco S Hyman | |
that makes this test work is being tested. | |||
2002-10-21 | Add test for pthread_kill. The test currently fails as thread | Marco S Hyman | |
specific delivery semantics are incorrect. Fix in progress. | |||
2002-10-21 | make an ieeefp regress pass; miod@ ok | Michael Shalayeff | |
2002-10-21 | make it compile through the gdb, still needs more work; fgsch@ ok | Michael Shalayeff | |
2002-10-21 | o Add "-days 365" to the examples (default lifetime is 1 month). | Todd C. Miller | |
o Add an example showing how to make a new cert w/o a new key. o Mention how to dump a cert in text format. |