Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - don't use the function enclosure macros. | 2002-10-16 | 1 | -32/+38 | |
| | | | | | - replace `POSIX 1003.2' instances with St -p1003.2. ok mpech@, millert@ | ||||
* | Replace "if (value != NULL && value == as->FOO)" with just | 2002-10-16 | 1 | -6/+6 | |
| | | | | | "if (value == as->FOO)" -- NULL needs no special handling. Pointed out by Paul Borman. | ||||
* | Implement isfdtype(3) as per the POSIX.1g draft; requested by David Hill | 2002-10-16 | 4 | -12/+131 | |
| | |||||
* | Fix typo introduce in last commit | 2002-10-15 | 1 | -2/+2 | |
| | |||||
* | cast NULL varargs sentinel to char * so it is 64 bit on alpha & sparc64 | 2002-10-15 | 1 | -5/+5 | |
| | |||||
* | Document the fact that calling auth_setitem() with a NULL value | 2002-10-15 | 1 | -4/+13 | |
| | | | | clears (frees) the corresponding value in the auth session. | ||||
* | If auth_setitem() is called with the current value (ie: the pointer | 2002-10-15 | 1 | -9/+11 | |
| | | | | | | | | | | | | is the same as the private value) then just return 0 as there is nothing to do. This fixes a potentially nasty problem where the caller could grab the username or style from the auth session via auth_getitem() and then call auth_verify() with those values. auth_setitem() would eventually get called which would make a private copy and free the old values in the auth session. After all this, the stashed username and/or style pointers would point to freed memory. | ||||
* | Note that when calling auth_verify() with a style and/or username, | 2002-10-15 | 1 | -1/+6 | |
| | | | | | the old values in the auth session will get freed and the new values added. | ||||
* | Cast NULL sentinel in auth_call() to a pointer | 2002-10-15 | 1 | -2/+2 | |
| | |||||
* | Move the clearing of as->state in auth_challenge() to after the sanity | 2002-10-13 | 1 | -7/+6 | |
| | | | | | checks. The check for "as != NULL" is useless if you have already dereferenced "as". Also fix some comment typos. From Moritz Jodeit. | ||||
* | Use strtoll() and strtoull() instead of strtoq() and strtouq() now | 2002-10-09 | 1 | -4/+4 | |
| | | | | that we have them as per the original BSDi code. | ||||
* | .Xr ipcs 1 | 2002-10-07 | 2 | -2/+6 | |
| | | | | | | | | .Xr ipcrm 1 grendel at zeitbombe dot org some input millert ok millert ian theo | ||||
* | name space pollution; after art@ | 2002-10-07 | 2 | -18/+18 | |
| | |||||
* | kick, kick. Fix these files which did not come from NetBSD, but the | 2002-10-07 | 14 | -6/+375 | |
| | | | | powerpc port by Dale Rahn. | ||||
* | clean up ifdefs for PIC, resulting code unchanged. | 2002-10-07 | 1 | -6/+3 | |
| | |||||
* | s/curbrk/__curbrk/ as suggested by art, a few _ASM_LABEL added as appropriate. | 2002-10-07 | 2 | -14/+14 | |
| | |||||
* | Simpler, smaller, more efficient and equivalent. | 2002-10-07 | 1 | -13/+2 | |
| | |||||
* | cerror -> __cerror as suggested by art, with a couple of missing _ASM_LABEL() | 2002-10-07 | 6 | -10/+10 | |
| | | | | added as appropriate. | ||||
* | curbrk -> __curbrk on sparc to avoid name space pollution. | 2002-10-06 | 2 | -12/+12 | |
| | |||||
* | Rename curbrk to __curbrk on i386 to avoid namespace pollution. | 2002-10-06 | 2 | -12/+12 | |
| | |||||
* | Rename curbrk to __curbrk on alpha to avoid namespace pollution. | 2002-10-06 | 2 | -9/+9 | |
| | |||||
* | Rename cerror to __cerror on i386 to avoid namespace pollution. | 2002-10-06 | 8 | -23/+23 | |
| | |||||
* | Rename cerror to __cerror on alpha to avoid namespace pollution. | 2002-10-06 | 2 | -6/+6 | |
| | |||||
* | missing arg; peterw@ifost.org.au | 2002-09-25 | 1 | -2/+2 | |
| | |||||
* | Document FD_CLOEXEC; from FreeBSD (Peter Jeremy) | 2002-09-19 | 1 | -7/+14 | |
| | |||||
* | fix Xr refs; frisco@blackant.net | 2002-09-18 | 3 | -6/+6 | |
| | |||||
* | Fix license and conformance with man page. | 2002-09-18 | 4 | -53/+369 | |
| | |||||
* | uncommit, since it breaks macppc libc. millert and miod have now said they | 2002-09-17 | 8 | -24/+37 | |
| | | | | | | did NOT approve those for commit. why did mickey feel he was ok to go commiting a set of diffs which had not been passed around and tested by people? we don't know. mickey, have you got something to say for yourself? | ||||
* | move __syscall prototype into unistd.h (like everybody else) and avoid private protos for it everywhere; millert@ ok | 2002-09-17 | 8 | -37/+24 | |
| | |||||
* | mickey, did you not look at the output? | 2002-09-17 | 1 | -1/+2 | |
| | |||||
* | typo | 2002-09-17 | 1 | -3/+3 | |
| | |||||
* | correct possible buffer overrun in setlocale(x, y) where y is supplied from | 2002-09-17 | 1 | -59/+97 | |
| | | | | outside. see NetBSD SA2002-012. | ||||
* | Move __cleanup into mprotect'ed page to prevent unintentional modifications | 2002-09-14 | 7 | -28/+82 | |
| | | | | similar to the atexit handlers. Idea and help deraadt@, ok deraadt@ | ||||
* | bye bye. | 2002-09-11 | 1 | -5/+0 | |
| | |||||
* | remove extra output of \n in clnt_perror() | 2002-09-10 | 1 | -2/+2 | |
| | |||||
* | better, faster scooter; fix cerror in mi someday | 2002-09-10 | 1 | -9/+3 | |
| | |||||
* | mi versions are good enough | 2002-09-10 | 3 | -348/+4 | |
| | |||||
* | ansi pedantic. ok deraadt@ | 2002-09-07 | 1 | -11/+12 | |
| | |||||
* | missing include, ok theo | 2002-09-06 | 1 | -1/+2 | |
| | |||||
* | use socklen_t where needed; henning pvalchev ok | 2002-09-06 | 7 | -17/+18 | |
| | |||||
* | spelling | 2002-09-04 | 1 | -2/+2 | |
| | |||||
* | re-enable function pointer table protection, this time make sure that | 2002-08-30 | 3 | -71/+92 | |
| | | | | | malloc.c gets the first mmap() call (since it depends on that, for its sbrk(0) use). ok deraadt@ | ||||
* | clean; gwyllion@ace.ulyssis.org | 2002-08-29 | 1 | -2/+1 | |
| | |||||
* | Limit UDP payload size for EDNS0 to 0xffff, not use lower 16bit value. | 2002-08-28 | 1 | -2/+4 | |
| | | | | from onoe@sm.sony.co.jp | ||||
* | sync from libkern (where the major fix was done or the kernel piece of this) | 2002-08-27 | 1 | -18/+22 | |
| | |||||
* | allocate 64K recieve buffer for DNS responses. | 2002-08-27 | 3 | -48/+78 | |
| | |||||
* | deal with negative return value from snprintf. | 2002-08-23 | 1 | -3/+5 | |
| | |||||
* | do not lose errno | 2002-08-22 | 1 | -1/+6 | |
| | |||||
* | tweak | 2002-08-22 | 2 | -8/+8 | |
| | |||||
* | drop AAAA reply with IPv4 mapped address. sync w/kame | 2002-08-22 | 2 | -2/+18 | |
| | | | | draft-itojun-v6ops-v4mapped-harmful-00.txt |