summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-03Does not append a NUL character to buf in readlink(2).Sylvestre Gallon
Add some check for malloc(3) return values. From Derrik Pates (daemon AT now DOT ai), thanks. OK millert@
2013-12-03Add support for FBT_RECLAIM that allow us to free the representationSylvestre Gallon
of vnode in userspace. "I think it's right" from tedu@.
2013-12-03Unmount the fuse filesystem if the communication end withSylvestre Gallon
the fuse device. ok sthen@
2013-12-03Add some missing check to know if the communication channel withSylvestre Gallon
libfuse is still open before sending fusebufs. ok sthen@
2013-12-03Rework the envelope flushing loops in mta to avoid sending all deliveryEric Faurot
notifications in one go to the queue. Simplify code in the process.
2013-12-03warn when failing to enqueue an internal bounce.Eric Faurot
2013-12-03Merge the per-arch crt0.c files into common_elf/crt0.c, with MD macros inPhilip Guenther
the md_init.h files. Worked out with and ok miod@; ok matthew@
2006-10-10Preliminary userland bits for OpenBSD/landisk, many things coming fromMiod Vallat
NetBSD.
2013-12-03Backport from gcc4 (mostly): make collect2 preserve ld's stdout andPhilip Guenther
stderr separately so that redirections of gcc's stdout/stderr act as expected. ok and testing miod@
2013-12-03ctype cleanupsTheo de Raadt
ok okan
2013-12-03Kill usage of timeb.h for upcoming removal of libcompat. OK deraadt@Todd C. Miller
2013-12-03stop using sys/syslimits.h directly, and use limits.hTheo de Raadt
prodded by millert
2013-12-03Kill usage of timeb.h for upcoming removal of libcompat. OK deraadt@Todd C. Miller
2013-12-03use LOGIN_NAME_MAX instead of L_cuserid, and adjust .h includes; ok millertTheo de Raadt
2013-12-03timeb.h has not been used foreverTheo de Raadt
2013-12-03do not need sgttyb.h anymore; ok millertTheo de Raadt
2013-12-03do not need timeb.hTheo de Raadt
2013-12-03no need for timeb.hTheo de Raadt
2013-12-03no need to use sgttyb.hTheo de Raadt
2013-12-02Rewrite receive filter handling and ioctl bits. Fixes not being able toBrad Smith
bring the interface out of all multicast mode once a range of multicast addresses has been found and missing multicast range checking for some of the dc(4) variants. Tested with 21143 (represents most of the dc(4) variants and boards) and ADMtek based adapters. Untested with ASIX and Xircom based adapters. Putting it in to move forward. I don't expect any issues with the ASIX/Xircom adapters with the changes as is. ok naddy@
2003-11-29Import gcc-3.3.2. Only the compiler. ada frontend removed for space Marc Espie
considerations.
2003-11-29Import gcc-3.3.2. Only the compiler. ada frontend removed for space Marc Espie
considerations.
2001-09-28Latest from Cyclic SoftwareThorsten Lockert
1997-06-28Latest version from Cyclic SoftwareThorsten Lockert
1996-10-18New release from Cyclic SoftwareThorsten Lockert
1996-01-30Missed files from 1.7.1 importThorsten Lockert
1995-12-19raw import of cvs-1.6Theo de Raadt
2013-12-02use a wording more usual in our manual pages.Igor Sobrado
ok guenther@
2013-12-02Do not add -lcompat in configure.Christian Weisgerber
libcompat isn't needed; configure checks for the presence of cuserid() and ftime() and the build copes well with the absence of either. ftime() would only ever be used if gettimeofday() wasn't available, and cuserid() is replaced by getlogin() but that code branch is not reached anyway. ok sthen@ jca@ deraadt@
2013-12-02As the number of interactively triggered (A)utoinstall's should be quiteAlexander Hall
outnumbered by (I)nstall's and (U)pgrade's, reorder the alternatives. "sure" deraadt@
2013-12-02Move ksh test files into regressMove ksh test files into regressMove ksh ↵Todd C. Miller
test files into regress.
2013-12-02Move ksh test files into regress.Todd C. Miller
2013-12-02spelling; from Maxime VillardTheo de Raadt
2013-12-02memory leak if copystr() fails, from Maxime VillardTheo de Raadt
2013-12-02Stop trying to put an off_t into an int, which results in a 2GB limit.Joel Sing
From NetBSD. ok krw@
2013-12-02Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise anJoel Sing
attribute's data length value wraps at 4GB. ok krw@
2013-12-02Use appropriate format specifiers in debug messages. In particular, avoidJoel Sing
casting almost everything to u_int32_t, then formatting as a signed int (which really helps when you're trying to debug based on 64-bit values). Looked over by krw@
2013-12-02Document new DISTFILES extensionMarc Espie
Document show-prepare-test-result
2013-12-02correct bzero of chacha20+poly1305 key context. bz#2177 fromDamien Miller
Loganaden Velvindron @ AfriNIC Also make it a memset for consistency with the rest of cipher.c
2013-12-02make key_to_blob() return a NULL blob on failure; part ofDamien Miller
bz#2175 from Loganaden Velvindron @ AfriNIC
2013-12-02use-after-free; bz#2175 patch from Loganaden Velvindron @ AfriNICDamien Miller
2013-12-02typo; from Jon CaveDamien Miller
2013-12-02CIRCLEQ begone.Kenneth R Westerback
ok jsing@ (who actually ok'd the systat one too, not millert@)
2013-12-02views CIRCLEQ begone.Kenneth R Westerback
ok miller@
2013-12-02CIRCLEQ begone.Kenneth R Westerback
ok miller@
2013-12-01mention curve25519-sha256@libssh.org key exchange algorithmDamien Miller
2013-12-01kill /var/obj which has been commented out since -r1.1 in '95.Jasper Lievisse Adriaanse
ok deraadt@
2013-12-01no longer neededMiod Vallat
2013-12-01switch mvme68k to the MI zs(4) driver.Miod Vallat
2013-12-01More robuse parsing of the DHCP lease file for autoinstall. This will,Alexander Hall
for example, bail out instead of producing annoying output if the filename statement does not match auto_(install|upgrade). Brought up again by Patrik Lundin, thanks! ok rpe@