Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | tweak previous; ok millert | 2011-01-10 | 1 | -3/+4 | ||
| | ||||||
* | mkdtemp() is present in POSIX 1003.1-2008 | 2011-01-10 | 1 | -11/+9 | ||
| | | | | Add a warning about using less than 6 Xs causing an error on some systems | |||||
* | mktemp(3) can be used, but not where mkstemp(3) is an alternative. Also | 2011-01-07 | 1 | -6/+6 | ||
| | | | | | | trim an inaccurate comment about its future removal. ok deraadt | |||||
* | Revert previous commit: if gcc picks a memory operand for the asm then | 2011-01-04 | 1 | -2/+2 | ||
| | | | | | 'movl' will result in an assembler error. Sorry llvm-clang users: fix your compiler to match gcc+as | |||||
* | Update to better describe reality, i.e. disklabel(8) UID usage. | 2011-01-03 | 1 | -10/+24 | ||
| | | | | ok jmc@ jsing@ | |||||
* | - adjust krb5 directories | 2011-01-03 | 1 | -8/+5 | ||
| | | | | - zap a trailing tab | |||||
* | Make this compile with llvm-clang; problem pointed out by Amit Kulkarni | 2010-12-31 | 2 | -3/+4 | ||
| | ||||||
* | - ensure ${DESTDIR}/usr/lib/pkgconfig/ as running make distrib-dirs is not | 2010-12-28 | 1 | -2/+3 | ||
| | | | | common/encouraged practice | |||||
* | - generate and install pkg-config files for openssl, which more and more | 2010-12-28 | 2 | -1/+122 | ||
| | | | | | | | | projects depend on being present (e.g. various ports). as discussed with various porters in a hungarian spa help/feedback from ingo@ and also OK halex@ no objections from djm@ | |||||
* | mktemp(3) (and thus mktemp(1)) no longer use the process ID when | 2010-12-27 | 1 | -3/+2 | ||
| | | | | | | replacing the Xs, it is now purely random. Also replace a use of .Fn that should be .Xr. OK jmc@ | |||||
* | crtbeginS.o needs to be buit with -fPIC; with -fpic the relocations for the | 2010-12-24 | 1 | -1/+3 | ||
| | | | | | | | gcc3/4 exception handling related symbols will be truncated causing linker failures when building shared libraries. ok drahn@, deraadt@, miod@ | |||||
* | Do not attempt to prepend /dev/ to path if it already contains a slash. | 2010-12-22 | 1 | -17/+19 | ||
| | | | | OK jsing@ | |||||
* | seemingly the "Decentralized Trust Management" paper comes from the | 2010-12-22 | 4 | -12/+12 | ||
| | | | | | | | IEEE Symposium on Security and Privacy, not the IEEE Conference on Privacy and Security; from Lawrence Teo | |||||
* | Fix out of date comment; no code change | 2010-12-22 | 1 | -2/+2 | ||
| | ||||||
* | remove comment that hasn't been true for quite a while now; | 2010-12-22 | 1 | -6/+1 | ||
| | | | | ok deraadt@ djm@ | |||||
* | Always return a pointer to the static buffer in realpath, even if | 2010-12-21 | 1 | -13/+10 | ||
| | | | | | path and realpath are the same. This matches the manual and avoids a bogus cast to non-const. OK jsing@, previous version OK kettenis@ | |||||
* | opendev() path argument should be const. OK deraadt@ | 2010-12-17 | 3 | -8/+8 | ||
| | ||||||
* | avoid pointer arithmetic on void * | 2010-12-16 | 1 | -5/+5 | ||
| | | | | | | tested for a while by me. ok otto@ | |||||
* | move CRYPTO_VIAC3_MAX out of cryptodev.h and into the only | 2010-12-16 | 2 | -0/+4 | ||
| | | | | | | file it will be used from. requested by/ok mikeb@ | |||||
* | The VIA ciphers are added to an array of CRYPTO_ALGORITHM_MAX length | 2010-12-16 | 2 | -4/+4 | ||
| | | | | | | | which should have been declared as CRYPTO_ALGORITHM_MAX + 1, fix this and reserve enough space for the VIA additions as well. ok/comments from mikeb & deraadt | |||||
* | Security fix for CVE-2010-4180 as mentioned in http://www.openssl.org/news/secadv_20101202.txt. | 2010-12-15 | 4 | -0/+16 | ||
| | | | | | | | | | where clients could modify the stored session cache ciphersuite and in some cases even downgrade the suite to weaker ones. This code is not enabled by default. ok djm@ | |||||
* | Rewrite the mbrtowc(3) man page so we can make sense of this function. | 2010-12-05 | 1 | -93/+187 | ||
| | | | | tweaks from jmc, help from uwe, "We are going to have to trust you :-)" deraadt | |||||
* | Sync with amd64, to allow this to compile without warnings with gcc4: | 2010-12-03 | 2 | -11/+11 | ||
| | | | | | | ``Correct the _atomic_lock() asm so that gcc accepts the constraints when compiling without optimization; fix copied from the kernel's atomic.h'' spotted by jim@ | |||||
* | involes -> involves; from Carlos Alberto Pereira Gomes | 2010-11-30 | 1 | -1/+1 | ||
| | ||||||
* | replace a large stack buffer with a malloc call, with help from matthew. | 2010-11-30 | 1 | -25/+34 | ||
| | | | | | ok deraadt [passed upstream to the tz list as well] | |||||
* | the posix regex mistake is here to stay. ok deraadt | 2010-11-21 | 2 | -16/+2 | ||
| | ||||||
* | At first I intended to make this use mktemp for its temporary file, but since | 2010-11-20 | 1 | -125/+0 | ||
| | | | | we don't really use this script, let's rm it. ok deraadt@ millert@ | |||||
* | Add CAVEATS section documenting error handling caveats. | 2010-11-20 | 1 | -2/+9 | ||
| | | | | tweak and ok jmc, tedu | |||||
* | Make KERN_CPTIME return an avarage number of ticks across all CPUs | 2010-11-19 | 1 | -4/+3 | ||
| | | | | tedu agreed with an idea, tested by Luis Useche and me; ok deraadt | |||||
* | - Apply security fix for CVE-2010-3864 (+commit 19998 which fixes the fix). | 2010-11-17 | 2 | -36/+84 | ||
| | | | | ok djm@ deraadt@ | |||||
* | Document isduid(3). | 2010-11-17 | 2 | -3/+64 | ||
| | | | | | | Tweaks from jmc@ ok jmc@ krw@ | |||||
* | Crank minor due to the addition of isduid(). | 2010-11-16 | 1 | -1/+1 | ||
| | ||||||
* | Teach readlabelfs() how to handle DUIDs. | 2010-11-15 | 1 | -4/+24 | ||
| | | | | ok krw@ | |||||
* | Factor out DUID identification code so that it can easily be reused. | 2010-11-15 | 4 | -29/+48 | ||
| | | | | ok krw@ | |||||
* | tweak previous; | 2010-11-08 | 1 | -3/+3 | ||
| | ||||||
* | Add %F, %g, %G, %u, %z (extended) and %Z. | 2010-11-08 | 2 | -9/+334 | ||
| | | | | | | | This is mostly a sync with NetBSD. tested in a bulk build by landry@ ok millert@ | |||||
* | there is no library function called sched_prio(), so this manual page | 2010-11-07 | 2 | -6/+5 | ||
| | | | | | was incorrectly named. there should be no sched_prio(3) page; it is misleading. | |||||
* | do not list MLINKed man pages multiple times in SEE ALSO; | 2010-11-07 | 1 | -3/+2 | ||
| | ||||||
* | tweak previous; | 2010-11-07 | 1 | -3/+5 | ||
| | ||||||
* | Add sched_get_priority_{min,max}. tested in a bulk by landry@. | 2010-11-07 | 6 | -9/+133 | ||
| | | | | input and ok from phessler@ and guenther@ | |||||
* | tweak previous; | 2010-11-06 | 1 | -2/+3 | ||
| | ||||||
* | make sio_onvol(3) return a integer exposing whether a volume knob | 2010-11-06 | 4 | -148/+27 | ||
| | | | | | is available for the stream. As we're at it, remove macros and functions that are neither used nor documented. | |||||
* | imsg.h requires sys/uio.h, ok deraadt | 2010-10-31 | 1 | -2/+3 | ||
| | ||||||
* | - the nroff workaround is no longer needed | 2010-10-29 | 1 | -19/+22 | ||
| | | | | - use some Fn and \*(Gt | |||||
* | remove libdes src/ports users have been switched to libcrypto | 2010-10-28 | 55 | -16872/+0 | ||
| | ||||||
* | unlink libdes src/ports users have been switched to libcrypto | 2010-10-28 | 1 | -2/+2 | ||
| | ||||||
* | Change basep parameter of getdirentries() to be off_t *, not long * | 2010-10-28 | 5 | -9/+9 | ||
| | | | | | | | | so it works correctly with large offsets (and matches other systems). This requires adding a new getdirentries syscall, with the old one renamed to ogetdirentries. All in-tree consumers of getdirentries() have been updated. Bump libc and libpthread major numbers. OK and with deraadt@ | |||||
* | remove skipjack and cast from the libc; ok deraadt | 2010-10-28 | 3 | -1053/+2 | ||
| | ||||||
* | support _SC_HOST_NAME_MAX; from brad | 2010-10-28 | 2 | -3/+9 | ||
| | | | | a libc crank is happening in < 24 hours | |||||
* | Remove the EXAMPLE, since *noone* should use this non-portable API | 2010-10-27 | 1 | -38/+11 | ||
| | | | | | directly -- it exists for libc use only. Tell people to use readdir(3). discussed with millert |