BSD 4_3_Tahoe release
[unix-history] / usr / src / usr.bin / tip / log.c
index a911900..24391a4 100644 (file)
@@ -1,9 +1,16 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)log.c      4.6 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)log.c      5.2 (Berkeley) 5/2/87";
+#endif not lint
 
 #include "tip.h"
 
 
 #include "tip.h"
 
+#ifdef ACULOG
 static FILE *flog = NULL;
 
 /*
 static FILE *flog = NULL;
 
 /*
@@ -39,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