Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-24 | Eliminate D_CHAIN, D_ECC and D_RAMDISK flags from disklabel. They were | Kenneth R Westerback | |
not being used in the tree for anything obviously useful. Get it done early so we can find if there are non-obvious uses out there. ok deraadt@ beck@ | |||
2006-09-15 | sysctl(3) can return ESRCH; noted by Kristaps Johnson; ok miod@ jmc@ | Otto Moerbeek | |
2006-08-09 | Document error return when namelen is 0. OK jmc@ | Todd C. Miller | |
2006-08-04 | Add ENOMEDIUM and EMEDIUMTYPE to report medium errors to userland programs | Bob Beck | |
when using removable media devices, along with changes to scsi_base to detect such cases in tapes other devices. This makes tar, dd, and friends report a semi useful error message instead of nonsense when there is nothing in the device. Includes libc minor bump, and will require the corresponding sets change. ok krw@ deraadt@ | |||
2006-06-02 | document NFS_NIOTHREADS, with some pointers from mickey; | Jason McIntyre | |
2006-05-29 | revert vfs.nfs.privport sysctl, broke a few architectures | Anil Madhavapeddy | |
requested by deraadt@ | |||
2006-05-28 | Add support for NFS mounts to be from non-reserved ports: | Anil Madhavapeddy | |
- new sysctl vfs.nfs.privport to require NFS mount requests to be on reserved ports when set to 1 (the default). - mountd now automatically sets the sysctl depending on the -n flag. - add mountd_flags to rc.conf to enable the -n flag at boot. deraadt@ ok | |||
2006-05-28 | VFS_GENERIC returns VFS info, not VM info | Pedro Martelletto | |
2006-05-27 | Document net.inet6.ip6.mforwarding | Claudio Jeker | |
2006-05-27 | System calls return -1 upon failure, so check for -1 | Pedro Martelletto | |
Pointed out by deraadt@ | |||
2006-05-27 | Don't leak memory if getcwd() was passed NULL and __getcwd() fails | Pedro Martelletto | |
Okay miod@ sturm@ deraadt@ | |||
2006-05-27 | Make libc's getcwd() use the new __getcwd() system call | Pedro Martelletto | |
Hacked by marius@ at c2k5, okay miod@ krw@ deraadt@ | |||
2006-05-26 | vpn.8 removal; | Jason McIntyre | |
2006-05-26 | let us not talk about ipsecadm and vpn anymore; ok reyk | Theo de Raadt | |
2006-05-17 | Document recent sysctl additions. | Gordon Willem Klok | |
ok jmc@, deraadt@ | |||
2006-05-15 | Handle empty terminal names more gracefully. | Hugh Graham | |
Variously OK. | |||
2006-05-09 | typo from jan niemann; ok otto | Jason McIntyre | |
2006-04-27 | update descriptions for DBCTL_{CONSOLE,PANIC}: they may not be raised | Jason McIntyre | |
when securelevel >0; based on a diff from nicholas marriott | |||
2006-04-11 | duplicate in the safe list | Theo de Raadt | |
2006-04-10 | telldir/seekdir optimization, avoid scanning the complete list, | Otto Moerbeek | |
while still returning the correct index for seekdir(); telldir() Tested by Fred Crowson and others; "put it in" deraadt@ | |||
2006-04-09 | a few rlim_t casts, kind of ok otto and millert | Theo de Raadt | |
2006-04-02 | kill atoi(), correct signedness of internal API gettype(); ok a few people | Theo de Raadt | |
2006-04-01 | - Plug huge mem leak; mostly samba was suffering. | Otto Moerbeek | |
- Fix semantics: seekdir(pos); telldir() shoud return pos. The code that implements this will be made faster in a later commit. - We loose documented behaviour (after closedir() the telldir() positions are not valid anymore). This was never in Posix, and most other systems have nothing like it. Diff originally from Paul Thorn, rewritten by me using some FreeBSD code. "slap it in" deraadt@ | |||
2006-03-31 | No longer need limits.h | Todd C. Miller | |
2006-03-31 | nfds is not constrained by OPEN_MAX for nftw(), only ftw() | Todd C. Miller | |
2006-03-31 | Document NET_RT_STATS. | Claudio Jeker | |
2006-03-31 | (char)to{upper,lower}() | Theo de Raadt | |
2006-03-31 | after we changed mode_t to be an int, the devname() man page was | Theo de Raadt | |
updated but the function itself never was; ok millert | |||
2006-03-25 | Fix description of KERN_VNODE, okay deraadt@ | Pedro Martelletto | |
2006-03-22 | Simplify cgetnext(3) by using strcspn(3). | Ray Lai | |
OK jaredy@ and otto@ | |||
2006-03-18 | In all these cases pfp != NULL. I also sneaked in some KNF. | Ray Lai | |
Okay jaredy, millert@, and otto@ | |||
2006-03-12 | Cleanup to avoid a save errno dance; from Andrey Matveev; ok pat@ | Otto Moerbeek | |
jaredy@ ray@ | |||
2006-03-10 | Don't dereference NULL pointer if file is truncated. | Ray Lai | |
Sync with cap_mkdb(1). ok otto and millert | |||
2006-01-13 | Remove neither documented nor found in any spec ctermid_r() function - ctermid() | Miod Vallat | |
is reentrant in its current implementation anyway. Surfing on the recent major version bump, ok millert@ deraadt@ | |||
2005-12-19 | Use strlcpy() return value in bound check instead of using an | Todd C. Miller | |
extra strlen(). This has been in my tree for a long time. | |||
2005-12-02 | never say unsigned; say at least unsigned int | Theo de Raadt | |
2005-11-30 | know __arm__ too | Theo de Raadt | |
2005-11-30 | timezone -> time zone | Jason McIntyre | |
2005-11-29 | document KERN_ARND better; ok deraadt@ | Otto Moerbeek | |
2005-11-28 | some nice off_t casts to please lint | Theo de Raadt | |
2005-11-28 | unused arg in internal static API | Theo de Raadt | |
2005-11-24 | include more architectures in the list (even though some do not compile | Theo de Raadt | |
this, but do it entirely in the compiler); ok miod | |||
2005-11-12 | - note that basename() may modify the string | Jason McIntyre | |
- section header WARNING -> CAVEATS while here from han boetes; ok deraadt@ | |||
2005-10-26 | Always set errno on error. Based on NetBSD. ok jaredy@ pat@ | Otto Moerbeek | |
2005-10-19 | once again: library routines should not check pointers and what errno | Theo de Raadt | |
with EFAULT. programmers ignore the error returns. please, please, please -- we want to crash so that the programmer will become aware of the bug and fix it instead. ok otto | |||
2005-10-10 | fix a few warnings, keep the crypt stuff for later. | Marc Espie | |
okay otto@ | |||
2005-10-07 | Document the recent changes to the multicast routing in the kernel. | Esben Norby | |
from jmc@ ok jmc@ | |||
2005-10-05 | Clarify the return value and drop nonapplicable bugs section hastily pasted | Miod Vallat | |
from ttyname(3). Feedback espie@ jmc@, ok deraadt@ jmc@ | |||
2005-10-04 | Fix use after free(). Bug found by mpech@; ok deraadt@ | Otto Moerbeek | |
2005-10-03 | remove traces of non-existent getfstype() function; | Jason McIntyre | |
ok krw@ deraadt@ |