summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-10-13util.h: Merge with EOM 1.8Niklas Hallqvist
ike_auth.c: Merge with EOM 1.57 author: ho Add file permission check to private key file. Split out check function to util.c.
2000-10-13regress/b2n/Makefile: Merge with EOM 1.12Niklas Hallqvist
regress/ec2n/Makefile: Merge with EOM 1.9 conf.c: Merge with EOM 1.40 util.c: Merge with EOM 1.17 author: ho Add file permission check to private key file. Split out check function to util.c.
2000-10-13sync fPIC and fpicTheo de Raadt
2000-10-13755 upgrade tooTheo de Raadt
2000-10-13Merge with EOM 1.39Niklas Hallqvist
author: ho Revert. Be strict about file mode.
2000-10-13doc cd boot, minimallyTheo de Raadt
2000-10-13eolTheo de Raadt
2000-10-13Merge with EOM 1.38Niklas Hallqvist
author: ho Warn but continue on isakmpd.conf permissions.
2000-10-13fix build on alpha with -Werror; David Leonard <david.leonard@csee.uq.edu.au>Jakob Schlyter
2000-10-13Fix Arch_MemMTime (previous change I did was bogus)Marc Espie
2000-10-13esetenv: does a setenv and bails out if error.Marc Espie
2000-10-13Clean up static constructor/destructor discovery and calling. InsteadDale Rahn
of relying on magic variable names, reqire that the library provide the _init/_fini functions so that the linker will find them and create the DT_INIT and DT_FINI sections of the .dynamic section of the shared library. With the shared library providing the DT_INIT function pointer, it is now possible to just check the init field and call it if defined, if not defined no constructors are needed. This cleans up the code in ld.so greatly.
2000-10-13Add secondary c++ shared library for testing purposes to verifyDale Rahn
that appropriate constructors in each library are called.
2000-10-13Changes to the powerpc startup files to work in a more typical ELFDale Rahn
manner. the linker knows about the magic function _init and _fini and will create a .dynamic tag to point to those symbols in the executable/shared libraries. Take advantage of that fact to allow ld.so to easily find the appropriate ctors/dtors calls for shared libraries Since the crtbeginS.c now contains executable code, it must be compiled with -fPIC. Rename the __init and __fini functions to _init/_fini so the linker will locate them.
2000-10-13Support Kingston KNU101TX USB Ethernet; from NetBSD.Aaron Campbell
2000-10-13delays that permit more machines to work; itojunTheo de Raadt
2000-10-13syncAaron Campbell
2000-10-13Add Kingston KNU101TX USB Ethernet.Aaron Campbell
2000-10-13enable PULLDOWN_TEST, and use m_pulldown for IPv6 packet parsing.Jun-ichiro itojun Hagino
this will make it easier for IPv6 code to cope with uncontinuous packet header on the mbuf (without this, ep interface on i386 chokes during IPv6 ND process). should affect IPv6 only.
2000-10-13Remove unwanted trailing whitespace.Aaron Campbell
2000-10-13Makefile:Dale Rahn
build with ${CC} -shared like the rest of shared libraries do now, instead of using ${LD}. Other files: make output more useful so that it is possible to tell if a constructor/destructor is running the correct number of times.
2000-10-13make sure we don't share external mbuf between m and mcopy, in ip_forward().Jun-ichiro itojun Hagino
NetBSD PR 11201.
2000-10-13syncAaron Campbell
2000-10-13VIA Tech devices from millert's new boardAaron Campbell
2000-10-12AriadneII works.Marc Espie
AriadneI is reported not to be functional, currently.
2000-10-12Repair RAMDISK, which has no joystick.Marc Espie
Thanks jj for testing, and miod for explanations.
2000-10-12Don't mix usage of old and new timeout code.Aaron Campbell
2000-10-12General man page cleanups, mostly to remove trailing whitespace, hardAaron Campbell
sentence breaks, and other such things.
2000-10-12syncTheo de Raadt
2000-10-12oopsTheo de Raadt
2000-10-12syncTheo de Raadt
2000-10-12Create /root with mode 0700 instead of 0755; deraadt@ okAaron Campbell
2000-10-12syncTheo de Raadt
2000-10-12art's devicesTheo de Raadt
2000-10-12remove unusedMarkus Friedl
2000-10-12don't segv on too many arguments. sync with kameJun-ichiro itojun Hagino
2000-10-12nice going, this did not even compileTheo de Raadt
2000-10-12MAP_FAILED, not -1.Artur Grabowski
2000-10-12Compare the return from mmap with MAP_FAILED, do not cast to int and comapreArtur Grabowski
with -1.
2000-10-12MAP_FAILED, not -1.Artur Grabowski
(this file actually contained two correct MAP_FAILED).
2000-10-12MAP_FAILED, not -1Artur Grabowski
2000-10-12Check for MAP_FAILED in mmap return value, not -1.Artur Grabowski
2000-10-12Fix cmp(1). It causes memory shortage for bigger files.Kevin Lo
OK art@
2000-10-12Check the mmap return value against MAP_FAILED, not NULL.Artur Grabowski
2000-10-12enable DES in SSH-1 clients onlyMarkus Friedl
2000-10-12allow buflen > MLEN for !SO_NAME case (like ancillary data, necessary forJun-ichiro itojun Hagino
IPv6 advanced API). sync with netbsd.
2000-10-12cleanupsTheo de Raadt
2000-10-12proto _rpc_dtablesize()Theo de Raadt
2000-10-12When checking mmap return, check for MAP_FAILED, not -1.Artur Grabowski
2000-10-12printf-like string format pedantJun-ichiro itojun Hagino