Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-01-17 | advance through buffer, leftovers from singular version; from Henric ↵ | Michael Shalayeff | |
Jungheim <henric@aimnet.com> | |||
2001-01-17 | Don't dump core when a ``bad address'' error occurs and there is neither | Paul Janzen | |
a file nor a command underlying it. This fixes NetBSD PR 11543; the fix is from Aymeric Vincent <aymeric@netbsd.org>. | |||
2001-01-17 | OpenBSD-ify. | Paul Janzen | |
2001-01-17 | avoid C sequence point issues; found by cgd@netbsd.org using a development | Paul Janzen | |
version of gcc. | |||
2001-01-17 | sync | Theo de Raadt | |
2001-01-17 | Remove libiberty from the list of dependencies, since we use the install | Marc Espie | |
version. | |||
2001-01-16 | indent | Theo de Raadt | |
2001-01-16 | fix another signal race, and check signal flags even in non-EINTR from ↵ | Theo de Raadt | |
select case | |||
2001-01-16 | check flags every loop, not just on EINTR | Theo de Raadt | |
2001-01-16 | "0x 2" -> "0x02" | David Leonard | |
2001-01-16 | save_errno in signal handler, in case it calls signal() | Theo de Raadt | |
2001-01-16 | use _exit() in signal handler | Theo de Raadt | |
2001-01-16 | typo in comment, change -> chance | Brad Smith | |
2001-01-16 | spelling | Theo de Raadt | |
2001-01-16 | remove some statics. simpler handles; idea from nisse@lysator.liu.se | Markus Friedl | |
2001-01-16 | fix VP3_PIRQ arg name, use I386_PCI_INTERRUPT_LINE_NO_CONNECTION; from netbsd | Michael Shalayeff | |
2001-01-16 | Enforce building stuff at compile time, not install time. | Marc Espie | |
2001-01-16 | fix verbosity levels. pointed out by J.D. Carlson <jd@noc7.uchsc.edu> | Eric Jackson | |
2001-01-16 | match on elsa xi300; from netbsd, no other visible changes in the driver | Michael Shalayeff | |
2001-01-16 | regen | Michael Shalayeff | |
2001-01-16 | Elsa products; from netbsd | Michael Shalayeff | |
2001-01-16 | limit the scsi_link.openings to 128 to be safe | Michael Shalayeff | |
2001-01-16 | make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from ↵ | Markus Friedl | |
galb@vandyke.com. note that you have to delete older ssh2-rsa keys, since they are in the wrong format, too. they must be removed from .ssh/authorized_keys2 and .ssh/known_hosts2, etc. (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP .ssh/authorized_keys2) additionally, we now check that BN_num_bits(rsa->n) >= 768. | |||
2001-01-16 | Don't include machine/elf_machdep.h, not all archs have it yet. | Artur Grabowski | |
2001-01-16 | add timeout variable, alphabetize the var list; pointed out by Rob Francis ↵ | Michael Shalayeff | |
<rfrancis@slurb.com> | |||
2001-01-16 | Indentation nit. | Artur Grabowski | |
2001-01-16 | Add a check for MNT_NOEXEC that was in exec_elf.c but not here. | Artur Grabowski | |
I am not sure if it is necessary, but it will not hurt either. | |||
2001-01-16 | Allow use of ELFSIZE to get Elf_* types and macros instead of explicit ↵ | Artur Grabowski | |
Elf{32,64}_. From NetBSD This will probably let us unify a lot of code (exec_elf.c vs. exec_elf64.c). | |||
2001-01-16 | Print more diagnostics on bus_space_map failure. | Artur Grabowski | |
2001-01-16 | Use objcopy to build the bootblocks instead of a hairy dd. | Artur Grabowski | |
Bootblock built with elf utils work now. | |||
2001-01-16 | First shot at loading elf symbols. Not sure yet if it works correctly. | Artur Grabowski | |
2001-01-16 | Fix ELF64_MACHDEP_ID_CASES | Artur Grabowski | |
2001-01-16 | Fix cross-builds of the kernel. (ELF only). | Artur Grabowski | |
2001-01-16 | typo; bk@rt.fm | Aaron Campbell | |
2001-01-16 | Add half of PT101 support: init codec, no mixer. And provide for | Marc Espie | |
audio/maestro without a functional mixer. Add hardware volume support, enable corresponding interrupt so that volume control works within cdio. | |||
2001-01-16 | do not trash errno in signal handler | Theo de Raadt | |
2001-01-16 | Revert last commit. | Marc Espie | |
2001-01-16 | s/ND6DEBUG/ND6_DEBUG/ to synchronize with other places | Jun-ichiro itojun Hagino | |
2001-01-16 | Changes from Don Beusee: | Todd C. Miller | |
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long | |||
2001-01-16 | bzero the sets before FD_SET'n them | Jason Wright | |
2001-01-16 | fix fd_set overflows | Jason Wright | |
2001-01-16 | switch stacks even when restoring a preempted thread. (credit to pefo@) | David Leonard | |
2001-01-16 | Document NO_BUILD. | Angelos D. Keromytis | |
2001-01-16 | Check whether /etc/inetd.conf exists before starting inetd (chuck@snew.com) | Angelos D. Keromytis | |
2001-01-16 | Changes from Don Beusee: | Todd C. Miller | |
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long | |||
2001-01-16 | fd_set overflow handling | Theo de Raadt | |
2001-01-16 | _exit() in signal handler | Theo de Raadt | |
2001-01-16 | cleanup strcpy, strncpy, signal races, etc | Theo de Raadt | |
2001-01-16 | use a private svc_run(), which looks at a global touched by SIGHUP handler | Theo de Raadt | |
2001-01-16 | pull 8.12.x change (or equivalent to), | Jun-ichiro itojun Hagino | |
which can mark certain DaemonPortOptions as "optional". now we can ship single sendmail.cf for both IPv4-only and IPv4/v6 kernels. |