66511 | 28-Mar-1994 |
bostic |
note that 4.4BSD follows symbolic links |
66508 | 28-Mar-1994 |
bostic |
Lost Jeff Forys' changes to keep from leaving two slashes in the pathname (rev 5.4) when bought back Donn's changes in 8.2 |
66456 | 27-Mar-1994 |
bostic |
return -1 on failure, so it matches the man page and setenv |
66455 | 26-Mar-1994 |
bostic |
add a trailing semi-colon to the getopt extern varaibles |
66454 | 26-Mar-1994 |
bostic |
change "ahost" name to "buf", pick a reasonable length I don't know why this code gets people so upset... |
66450 | 25-Mar-1994 |
bostic |
cgetent accesses free'd memory From: Chris Torek <torek@BSDI.COM> |
66449 | 25-Mar-1994 |
bostic |
add gettimeofday(2), select(2) references struct timeval |
66446 | 25-Mar-1994 |
bostic |
only clear bits specified in perm, or, if setting as well, clear all in group. deal with "g=" vs. "g=u" bogon. update commands if: (1) perm set and we get a 'permcopy' (2) perm set and nothing lef
only clear bits specified in perm, or, if setting as well, clear all in group. deal with "g=" vs. "g=u" bogon. update commands if: (1) perm set and we get a 'permcopy' (2) perm set and nothing left to do (3) nothing left to do and we've there's an 'outstanding =' fix umask handling for '-' when 'who' is unset. condense code for '='. From: "Chris G. Demetriou" <cgd@postgres.Berkeley.EDU>
show more ...
|
66429 | 21-Mar-1994 |
bostic |
The functions in getgrent.c don't work right, because gr_mem isn't set up properly to deal with emtpy groups or the end-of-line. The return value from strsep() is the buffer pointer given to strsep()
The functions in getgrent.c don't work right, because gr_mem isn't set up properly to deal with emtpy groups or the end-of-line. The return value from strsep() is the buffer pointer given to strsep() so there's an extra blnak entry at the end of the user list. The field can be zero length if there are extra space. From: "Chris G. Demetriou" <cgd@vangogh.CS.Berkeley.EDU>
show more ...
|
66409 | 20-Mar-1994 |
bostic |
setting all of the fields to INT_MIN took forever to run fix from From: ado@elsie.nci.nih.gov (Arthur David Olson) |
66407 | 20-Mar-1994 |
bostic |
sysconf(_SC_OPEN_MAX) and sysconf(_SC_CHILD_MAX) are still not useable as all they do is return -1 ((long)RLIM_INFINITY). I've changed my version to use rlim_cur rather than rlim_max as that is wha
sysconf(_SC_OPEN_MAX) and sysconf(_SC_CHILD_MAX) are still not useable as all they do is return -1 ((long)RLIM_INFINITY). I've changed my version to use rlim_cur rather than rlim_max as that is what programs that use this expect to get From: Mark Davies <mark@Comp.VUW.AC.NZ>
show more ...
|
66406 | 20-Mar-1994 |
bostic |
delete UofT; requested change from Henry Spencer <henry@zoo.toronto.edu> |
66405 | 20-Mar-1994 |
bostic |
requested change from Henry Spencer <henry@zoo.toronto.edu> |
66385 | 19-Mar-1994 |
bostic |
make prototypes __P style |
66382 | 18-Mar-1994 |
bostic |
go to alpha3.4 |
66381 | 18-Mar-1994 |
bostic |
upgrade to alpha3.4 fixes a?b matching ab matches b, not ab From: Henry Spencer <henry@zoo.toronto.edu> |
66376 | 18-Mar-1994 |
bostic |
use sprintf() instead of loop counts, for consistency From: Craig Leres <leres@ee.lbl.gov> KNF, from me |
66373 | 17-Mar-1994 |
bostic |
skip lines that are too long should be logged, it's probably an attempt to crack the system. |
66370 | 17-Mar-1994 |
eric |
use __progname (from crt0) as default syslog tag if none specified |
66369 | 17-Mar-1994 |
bostic |
If you call syslog() with a pointer to ctime()'s static buffer, it gets updated by syslog()'s call before copying the stuff out). From: Craig Leres <leres@ee.lbl.gov> The code contains '(void)sprintf
If you call syslog() with a pointer to ctime()'s static buffer, it gets updated by syslog()'s call before copying the stuff out). From: Craig Leres <leres@ee.lbl.gov> The code contains '(void)sprintf(...)' and (now) '(void)strftime(...)' casts, but sprintf() and strftime() both return a character count From: Donn Seeley <donn@BSDI.COM>
show more ...
|
66362 | 16-Mar-1994 |
bostic |
alpha3.3 |
66361 | 16-Mar-1994 |
bostic |
alpha3.3 |
66360 | 16-Mar-1994 |
bostic |
date and time created 94/03/16 11:45:36 by bostic |
66358 | 15-Mar-1994 |
bostic |
lint |
66327 | 08-Mar-1994 |
bostic |
first argument to fwrite is a const void * |