blob: 987768d9620cefa1ed0c75a9cc2efee23c01c06a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
$NetBSD: patch-al,v 1.1 2004/05/28 01:09:01 wiz Exp $
--- procs.c.orig 1999-12-01 19:16:21.000000000 -0700
+++ procs.c 2004-05-27 11:00:23.000000000 -0600
@@ -173,8 +173,8 @@
(void) fflush(stdout);
(void) fflush(stderr);
- if (log)
- (void) fflush(log);
+ if (logfile)
+ (void) fflush(logfile);
if (errlog)
(void) fflush(errlog);
@@ -396,8 +396,8 @@
(void) await_child();
(void) fflush(stdout);
(void) fflush(stderr);
- if (log)
- (void) fflush(log);
+ if (logfile)
+ (void) fflush(logfile);
if (errlog)
(void) fflush(errlog);
|