From 3075700fe36cc99e2081fac39c9a23255ca2d539 Mon Sep 17 00:00:00 2001 From: "N.N." Date: Mon, 27 Apr 2009 21:06:10 +0000 Subject: added option -stdout (similar to -stderr) svn path=/trunk/; revision=11180 --- desiredata/src/desire.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desiredata/src/desire.c') diff --git a/desiredata/src/desire.c b/desiredata/src/desire.c index 35ebf470..f03b3775 100644 --- a/desiredata/src/desire.c +++ b/desiredata/src/desire.c @@ -7184,11 +7184,11 @@ extern "C" void glob_init () { /* formerly s_print.c */ t_printhook sys_printhook; -int sys_printtostderr; +int sys_printtofh = -1; /* send to console by default */ static void dopost(const char *s) { if (sys_printhook) sys_printhook(s); - else if (sys_printtostderr) fprintf(stderr, "%s", s); + else if (sys_printtofh<0) fprintf(stderr, "%s", s); else { std::ostringstream t; for(int i=0; s[i]; i++) { -- cgit v1.2.1