Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-23 | Slightly improve wording and punctuation. | Miod Vallat | |
2002-02-23 | Add a caveat section pointing out that people affecting the return value | Miod Vallat | |
of getopt() to char variables instead of int lose on arches where char is unsigned by default. Clean the example by not pasting parts of <unistd.h> into it, and by not using atoi(3). | |||
2002-02-23 | .In -> .Fd | Federico G. Schwindt | |
2002-02-23 | fixes. | Federico G. Schwindt | |
2002-02-23 | bump minor, EA support was added to libc. | Dale Rahn | |
2002-02-23 | sysctl kern.usercrypto | Theo de Raadt | |
2002-02-23 | Document KERN_SYSVIPC_INFO; from NetBSD | Todd C. Miller | |
2002-02-23 | Add brief LOGIN_SETLOGIN caveat and point the user to setlogin(2) | Todd C. Miller | |
for more info. | |||
2002-02-23 | Add a big fat warning that setlogin() changes the login name for all | Todd C. Miller | |
processes in the session. Adapted from FreeBSD. Also remove the paragraph in BUGS about the kernel login name being larger than what is in utmp--we now have login usernames in utmp. | |||
2002-02-22 | manpages fixes, mostly from fgsch@ with cleanup and correction. | Dale Rahn | |
2002-02-22 | Extended Attribute support, from FreeBSD/TrustedBSD. ok art@ deraadt@ | Dale Rahn | |
libc support pieces | |||
2002-02-22 | note KTRFAC_EMUL | Theo de Raadt | |
2002-02-21 | remove rfork.o from the auto-generated assembler stubs | Artur Grabowski | |
2002-02-19 | We need to keep K&R compat macros for some ports where the assemnbler is | Todd C. Miller | |
still using -traditional-cpp. | |||
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-18 | Open console with O_NONBLOCK to avoid blocking on a locked console. | Todd C. Miller | |
From David Malone | |||
2002-02-17 | rfork() needs a fork.S-like stub as well; ok art | Theo de Raadt | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-02-16 | MI man page to document fpgetmask(3) and friends; from ross@NetBSD, ok deraadt | Peter Valchev | |
2002-02-13 | indent | Theo de Raadt | |
2002-02-10 | back out the no reserved port option for nfs | Nathan Binkert | |
2002-02-09 | Allow O_SYNC and O_NOFOLLOW flags in dbopen() | Todd C. Miller | |
2002-02-08 | Document that close-on-exec is not touched in dup2 when oldd == newd. | Artur Grabowski | |
2002-02-08 | fix typo, and put back stack frame ops | Michael Shalayeff | |
2002-02-07 | reverse condition in the sp botchness check, we need to nullify | Michael Shalayeff | |
if we are ok not if we are bad. fix a pasto in branch w/in longjmps. | |||
2002-02-07 | additional condition on reverse copy; from fredette@ | Michael Shalayeff | |
2002-02-06 | no need to interlock the register, use r0 as output | Michael Shalayeff | |
2002-02-06 | implement the setjmp/longjmp family, based on fredette@'s work | Michael Shalayeff | |
2002-02-05 | o) Fix memory leak in _auth_checklogin(), auth_approval(), auth_close() and | Mike Pechkin | |
auth_clean(). Spotted via ftpd. We could use ftpd as a simple debug tool for bsdauth and login_cap routines. :) millert@ help&OK | |||
2002-02-01 | Only squeeze a short key/value pair onto a page with other complete key/value | Todd C. Miller | |
pairs, not onto a page containing the end of a big pair; mycroft@netbsd.org | |||
2002-02-01 | Return a useful errno value in the overflow case. Also, print a | Todd C. Miller | |
message to stderr in one more case. mycroft@netbsd.org | |||
2002-02-01 | If (keysize+datasize)%(bsize=14)==0, insertion of a `big key' would cause an | Todd C. Miller | |
invariant (actually, an ugly hack) to fail, and all Hell would break loose. When deleting a big key, the offset of an empty page should be bsize, not bsize-1; otherwise an insertion into the empty page will cause the new key to be elongated by 1 byte. Make the packing more dense in a couple of cases. From mycroft@netbsd.org | |||
2002-02-01 | After writing a page out to disk, run the page back through the user's | Todd C. Miller | |
input filter to ensure we don't end up with a cached copy of the page in the wrong byte-order for the host cpu. This fixes a fatal bug which bites when the DB 'lorder' is different to the cpu's, and a cached page is accessed soon after it was flushed to disk. From scw@netbsd.org | |||
2002-02-01 | Fix a condition where the hole would be inserted in the wrong place during a | Todd C. Miller | |
split; mycroft@netbsd.org | |||
2002-01-31 | Fill in missing (default) mmap(2) flag MAP_FILE. | Todd C. Miller | |
mycroft@netbsd.org | |||
2002-01-31 | Use pread(2) and pwrite(2) instead of lseek(2) + read(2) / write(2). | Todd C. Miller | |
Based on changes from NetBSD (thorpej). | |||
2002-01-29 | Fix memory leak in setuserpath(). We prefer patch from millert@. | Mike Pechkin | |
2002-01-28 | Fix memory leaks in login_getcapnum() and login_getcapsize(). | Mike Pechkin | |
millert@ ok | |||
2002-01-24 | most of these is v2, not v6 | Michael Shalayeff | |
2002-01-24 | ellaborate on history | Michael Shalayeff | |
2002-01-24 | fix the history refs | Michael Shalayeff | |
2002-01-23 | _THREAD_PRIVATE_MUTEX_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt | |
2002-01-23 | THREAD_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt | |
2002-01-23 | Fix memory leaks in login_getstyle(), login_getstr() and login_getcaptime() | Todd C. Miller | |
2002-01-16 | compile sparc64 version of sha1.go with -O0, too. OK jason@ | Marco S Hyman | |
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2002-01-15 | MNAMELEN is 90, not 32; peterw AT ifost.org.au | Todd C. Miller | |
2002-01-14 | If waitpid() return ECHILD that should not be a fatal error since | Todd C. Miller | |
someone else could have waited for the process or zombies could be disabled via SIG_IGN or SA_NOCLDWAIT. | |||
2002-01-12 | If the user passes in "" as the string to resolve the lstat() will | Todd C. Miller | |
fail anyway so check for that. Also convert "." to "" since that way we avoid the lstat() (which we don't need) and the subsequent chdir() and some dir checks. |