BSD 4_3_Tahoe release
[unix-history] / usr / src / usr.bin / tip / log.c
index 8fc91c4..24391a4 100644 (file)
@@ -5,11 +5,12 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)log.c      5.1 (Berkeley) 4/30/85";
+static char sccsid[] = "@(#)log.c      5.2 (Berkeley) 5/2/87";
 #endif not lint
 
 #include "tip.h"
 
 #endif not lint
 
 #include "tip.h"
 
+#ifdef ACULOG
 static FILE *flog = NULL;
 
 /*
 static FILE *flog = NULL;
 
 /*
@@ -45,16 +46,14 @@ logent(group, num, acu, message)
                num,
 #endif
                acu, message);
                num,
 #endif
                acu, message);
-       fflush(flog);
+       (void) fflush(flog);
        (void) flock(fileno(flog), LOCK_UN);
 }
 
 loginit()
 {
        (void) flock(fileno(flog), LOCK_UN);
 }
 
 loginit()
 {
-
-#ifdef ACULOG
        flog = fopen(value(LOG), "a");
        if (flog == NULL)
        flog = fopen(value(LOG), "a");
        if (flog == NULL)
-               fprintf(stderr, "can't open log file\r\n");
-#endif
+               fprintf(stderr, "can't open log file %s.\r\n", value(LOG));
 }
 }
+#endif