Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-21 | one more: guid -> egid | Jason McIntyre | |
thanks tedu@ | |||
2003-02-21 | typos; | Jason McIntyre | |
2003-02-20 | fix a variety of missing or wrong MLINKS | Theo de Raadt | |
2003-02-18 | indent delay slot | Jason Wright | |
2003-02-18 | intial -> initial; | Jason McIntyre | |
the great intial witch hunt, as prompted by tdeval@ os-aix-dso.c: ok henning@ ab.C: ok drahn@ | |||
2003-02-18 | copyrights added; | Jason McIntyre | |
these are all Sun Microsystems | |||
2003-02-17 | minor KNF | Todd C. Miller | |
2003-02-16 | teach people about strlcpy, not strcpy | Theo de Raadt | |
2003-02-14 | put my copyrights on here | Theo de Raadt | |
2003-02-14 | license clarifications; arthur_david_olson@nih.gov | Todd C. Miller | |
2003-02-14 | re-stir if pid changes; markus & me | Theo de Raadt | |
2003-02-08 | Obey calling convention and use the right opcode (fabss -> fabsd); Fabulous... | Jason Wright | |
(based on netbsd pr 20140) | |||
2003-02-07 | Don't write log message to console unless we are unable to connect to | Todd C. Miller | |
syslogd. Noticed by marc@; OK by marc@ and deraadt@ | |||
2003-02-03 | some more functions that are (only on OpenBSD) safe in signal handlers. | Theo de Raadt | |
not having access to these makes things really painful | |||
2003-01-31 | Replace emulated versions of setreuid() and setregid() with real syscalls. | Todd C. Miller | |
These are spec'd by POSIX as of 1003.1-2001; deraadt@ OK | |||
2003-01-29 | Align this char array accessed as double, for paranoia reasons. | Dale Rahn | |
2003-01-28 | thread safer libc (note: safer, not safe) | Marco S Hyman | |
Access to the global _res structure replaced by pointers to a per thread instance. If unthreaded the pointer is to the global structure. Also replaced a 64k stack array with malloc-ed memory so threaded aps (with a default 64k stack) have a chance at working. ok deraadt@ | |||
2003-01-21 | kern.watchdog; ok mickey@ | Markus Friedl | |
2003-01-21 | typos; | Jason McIntyre | |
ok deraadt@ | |||
2003-01-20 | Don't reconnect to logging socket if send() returns an error and errno | Todd C. Miller | |
== ENOBUFS, there is no point and it hurts chroot'ed processes. Don't return immediately from syslog_r() when the send(), we may have more work to do. deraadt@ OK | |||
2003-01-20 | remove libc_r mention in comment | Marco S Hyman | |
2003-01-20 | comment changed to look in libpthread, not libc_r | Marco S Hyman | |
2003-01-19 | programs that chroot must use LOG_NDELAY; deraadt@ OK | Todd C. Miller | |
2003-01-18 | inet6 fixes from jmc@prioris.mini.pw.edu.pl | Theo de Raadt | |
2003-01-16 | Waiter! I asked for a working vfork! | Miod Vallat | |
2003-01-16 | Alignment requirements are satisfied in ENTRY(), no need to add more here. | Miod Vallat | |
2003-01-15 | minbrk is exposed, gmon uses it | Michael Shalayeff | |
2003-01-14 | Add sanity check to prevent int oflow for very large allocations. | Todd C. Miller | |
Also fix a signed vs. unsigned issue while I am at it. Found by Jim Geovedi. OK deraadt@ | |||
2003-01-08 | Move the rounds into separate functions on sparc64 so gcc's optimizer | Todd C. Miller | |
doesn't blow up. This is a hack but is better than compiling sha1.c with -O0 on sparc64. From NetBSD (mrg). deraadt@ OK | |||
2003-01-07 | Better have an OpenBSD static rcsid rather than a NetBSD static rcsid for | Miod Vallat | |
this file... | |||
2003-01-07 | Get static rcsid correctly, better style for .S files, trim whitespace. | Miod Vallat | |
2003-01-07 | Properly align __infinity - m88k is very strict wrt double alignment. | Miod Vallat | |
Fixes - oh what a surprise - bus errors in awk. | |||
2003-01-07 | Get the rounding modes table correct, eventually. | Miod Vallat | |
2003-01-07 | One more pass to get thinks correct wrt weak symbols and syscalls. | Miod Vallat | |
2003-01-07 | Updated from tzcode2002d (ftp://elsie.nci.nih.gov/pub/) | Todd C. Miller | |
2003-01-05 | spelling | Theo de Raadt | |
2003-01-04 | spelling | Theo de Raadt | |
2003-01-04 | Fix *longjmp() return values. | Miod Vallat | |
2003-01-02 | Adapt to recent changes in libc/libc_r wrt weak symbols, so that programs | Miod Vallat | |
can link against libc without unresolved symbols again. Anyone who correctly guessed that my m88k hard drive has been recovered, wins a strawberry lollipop. | |||
2003-01-02 | Rename cerror to __cerror and curbrk to __curbrk, to avoid namespace | Miod Vallat | |
pollution. Conforming to art@'s evil plans. | |||
2003-01-02 | Begone. | Miod Vallat | |
2003-01-02 | Handle things like "%%m" correctly; closes PR 3057 | Todd C. Miller | |
OK miod@ | |||
2003-01-02 | Typos | Miod Vallat | |
2002-12-31 | Catch EISDIR in execvp() and friends so that if a directory appears | Todd C. Miller | |
in PATH that matches the name to be executed we skip it; Andy Isaacson | |||
2002-12-23 | Unbreak for bigendian, identical diff as Theo's. | Dale Rahn | |
2002-12-23 | o Ansi function headers | Todd C. Miller | |
o Add __BEGIN_DECLS/__END_DECLS to include files o Safe macros o Remove useless variable assignment in the End function of *hl.c o Some minor KNF, needs more From Dan Weeks | |||
2002-12-17 | Make SysV-style shared memory and semaphore limits sysctl'able. | Todd C. Miller | |
Instead of allocating a static amount of memory for the data structures via valloc() in allocsys(), allocate things dynamically using pool(9) when possible and malloc(9) when not. The various members of struct seminfo and struct shminfo are in kern.seminfo and kern.shminfo respectively (not all members of kern.seminfo are changable). The data structures used still leave something to be desired but things are not made worse in that respect by this commit. | |||
2002-12-15 | Casting to unsigned int in isfoo() causes problems on alpha and | Todd C. Miller | |
sparc64. Change cast back to unsigned char but do a bitwise AND with 0xff to avoid any sign extension weirdness and to make it impossible for us to overflow _C_ctype_. The bitwise AND is probably not needed and may be removed later if this does not trigger compiler bugs. | |||
2002-12-15 | more writeable -> writable by torh | Henning Brauer | |
2002-12-14 | Instead of doing "if (c == EOF) return 0;" use the hook ('?') operator | Todd C. Miller | |
instead to make these one-liners. Works around a compiler bug on vax that affects both the libc and inline versions identically. |