blob: 2ef5e271022f12099d2cb7b844c3a940e07c9836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- output.c 2007-03-02 01:43:18.000000000 +0100
+++ ../../clamav-0.90.1-mod/shared/output.c 2007-03-03 18:49:06.000000000 +0100
@@ -266,7 +266,16 @@
if(mprintf_disabled)
return;
- fd = stdout;
+/* fd = stdout; */
+
+
+/* fd = stdout; (missing flag 'mprintf_stdout') --eh. */
+
+ if(mprintf_stdout)
+ fd = stdout;
+ else
+ fd = stderr;
+
/* legend:
* ! - error
|