[14075] in Athena Bugs
Egregious bug in track
daemon@ATHENA.MIT.EDU (Jim Haynes)
Wed Dec 27 15:01:07 1995
From: haynes@cats.ucsc.edu (Jim Haynes)
Date: Wed, 27 Dec 1995 12:00:57 -0800
To: bugs@MIT.EDU, rel-eng@MIT.EDU
this is in misc.c
*** 96,102 ****
if ( filep);
else if ( nopullflag) return;
else if ( logfile = fopen( logfilepath, "w+")) {
! (void) fchmod( logfile, 0664);
filep = logfile;
}
else {
--- 105,111 ----
if ( filep);
else if ( nopullflag) return;
else if ( logfile = fopen( logfilepath, "w+")) {
! (void) fchmod( fileno(logfile), 0664);
filep = logfile;