Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add CAST encryption, implementation by Steve Reid <sreid@sea-to-sky.net>. | 1998-07-21 | 2 | -2/+242 | |
| | | | | Man pages will come soon, I hope. | ||||
* | SEM_R and SEM_A userland accessable as required; michaels@inet.no | 1998-07-20 | 1 | -6/+24 | |
| | |||||
* | fix dependancy item for libc. arch is powerpc not ppc. hmmm. | 1998-07-19 | 1 | -2/+2 | |
| | |||||
* | change to lite2 getenv(); getenv(NULL) now returns NULL | 1998-07-16 | 1 | -14/+21 | |
| | |||||
* | make that 0664 until we find out why umask is not being applied | 1998-07-15 | 1 | -2/+2 | |
| | |||||
* | open gmon.out mode 0644, not 0666 | 1998-07-15 | 1 | -2/+2 | |
| | |||||
* | formatting flaws | 1998-07-14 | 1 | -1/+5 | |
| | |||||
* | document setuid/setgid restrictions | 1998-07-14 | 1 | -1/+16 | |
| | |||||
* | avoid calling __has_yppw() everytime through getpwent(), by caching the YP status along with the open file status | 1998-07-14 | 1 | -5/+8 | |
| | |||||
* | clarify | 1998-07-13 | 1 | -3/+4 | |
| | |||||
* | ftpd: sleep for an indeterminate amount for non-existant logins | 1998-07-13 | 1 | -3/+3 | |
| | | | | | to simulate a crypt, like login does. Use SEEK_* not L_* and kill some 0L's used in lseek while we're there. | ||||
* | fix date spec | 1998-07-11 | 1 | -2/+2 | |
| | |||||
* | be... slightly more permissive.. but i think this is right, i looked at it for 5 minutes | 1998-07-11 | 1 | -4/+4 | |
| | |||||
* | do not let :relative paths through (how did i miss this before) | 1998-07-11 | 1 | -2/+2 | |
| | |||||
* | correct range spec; jkoshy | 1998-07-10 | 1 | -2/+2 | |
| | |||||
* | clarify gethostname() call | 1998-07-09 | 1 | -2/+2 | |
| | |||||
* | include <signal.h> not <sys/signal.h> | 1998-07-07 | 1 | -2/+2 | |
| | |||||
* | per XPG, gethostname() with a short buffer returns truncated data - not ENOMEM. | 1998-07-07 | 2 | -8/+23 | |
| | | | | | As permitted, make the truncated buffer be NUL terminated. make getdomainname() match. | ||||
* | strlxx() return size_t not char * | 1998-07-06 | 1 | -3/+3 | |
| | |||||
* | do the right thing if maxsiz == 0 | 1998-07-06 | 1 | -2/+3 | |
| | |||||
* | Always NUL terminate buf even if there was not enough space to | 1998-07-06 | 2 | -3/+15 | |
| | | | | | | | write the whole time string. XPG4.2 says "the contents of the array are indeterminate" in this case so this is allowed, though obviously you can't rely on this behavior if you care about portability... | ||||
* | fix openbsd tag | 1998-07-06 | 91 | -1/+91 | |
| | |||||
* | add .Xr's for all the random functions in libc | 1998-07-05 | 4 | -4/+9 | |
| | |||||
* | ctime takes a pointer to time_t not long. Correct in prototype, wrong in description | 1998-07-05 | 1 | -2/+2 | |
| | |||||
* | use STDERR_FILENO; kleink | 1998-07-05 | 1 | -2/+2 | |
| | |||||
* | Change some of the local symbols into "temporary", removed symbols. | 1998-07-05 | 1 | -6/+4 | |
| | | | | | makes it easier to debug code to see the function entry not the local branch targets. | ||||
* | Changes to support profiling libraries for the powerpc port. | 1998-07-04 | 1 | -10/+8 | |
| | |||||
* | split dirname and basename man pages; add dirname | 1998-07-04 | 1 | -0/+93 | |
| | |||||
* | split dirname and basename man pages | 1998-07-04 | 2 | -42/+14 | |
| | |||||
* | link for mkstemps() | 1998-07-03 | 1 | -1/+2 | |
| | |||||
* | do not free() before last ref; kmayer@freegate.com | 1998-07-03 | 1 | -5/+7 | |
| | |||||
* | document fd 0-2 scheme for setuid/setgid | 1998-07-02 | 1 | -0/+7 | |
| | |||||
* | crank major version since we have added new interfaces | 1998-07-01 | 1 | -1/+1 | |
| | |||||
* | add strlcpy/strlcat, safe and sensible string copy/append | 1998-07-01 | 4 | -3/+278 | |
| | |||||
* | add mkstemp(char *template, int suffixlen) interface | 1998-06-30 | 2 | -14/+67 | |
| | |||||
* | Oh fun, mucking about with files used on all archs. | 1998-06-28 | 1 | -2/+2 | |
| | | | | | | | | | This is one of many places in the source that have #if defined("list all architectures") Is there some possible way to eliminate, reduce these or at least have a file that describes all occurrances so that when a new port is done this could be addressed. like the recent hppa port, does it need to take a look at this???? | ||||
* | ktrace not trace | 1998-06-27 | 1 | -2/+2 | |
| | |||||
* | Document EINVAL if peer address is multicast. | 1998-06-27 | 1 | -2/+2 | |
| | |||||
* | rcmdsh, not rcmd | 1998-06-26 | 1 | -3/+3 | |
| | |||||
* | fix prototypes | 1998-06-26 | 1 | -1/+2 | |
| | |||||
* | Fix snprintf return value usage. | 1998-06-23 | 2 | -3/+7 | |
| | |||||
* | doc EINVAL; bde | 1998-06-23 | 1 | -0/+7 | |
| | |||||
* | Remove the advertising clause in my old license, it impedes free use | 1998-06-21 | 10 | -55/+25 | |
| | | | | | of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code... | ||||
* | recent IPC API changes requires this | 1998-06-15 | 1 | -1/+1 | |
| | |||||
* | use Bx macro for BSD versions | 1998-06-15 | 36 | -60/+97 | |
| | |||||
* | change ipc.h to use uid_t and friends, and then build compat system calls for the old ushort based ipc.h | 1998-06-11 | 3 | -41/+41 | |
| | |||||
* | Add a mention of the tcp ident sysctl. | 1998-06-11 | 1 | -1/+9 | |
| | |||||
* | spelling | 1998-06-10 | 1 | -3/+3 | |
| | |||||
* | XPG says 4th arg is optional | 1998-06-10 | 2 | -22/+43 | |
| | |||||
* | clean; kleink | 1998-06-08 | 5 | -8/+8 | |
| |