X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Flog.c;h=5056d011a8049bb205ba89b51d7a77d7c53607f9;hp=4332e92a4a01069f91be1182374af74cea1fc0d8;hb=9a6ef6ade0e32716585b5dd5388a60285ea9d408;hpb=d193403feb3df490f60175d387603f4daf89cf1f diff --git a/util/log.c b/util/log.c index 4332e92..5056d01 100644 --- a/util/log.c +++ b/util/log.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: log.c,v 1.33 2003-01-06 08:20:28 adam Exp $ + * $Id: log.c,v 1.34 2003-02-07 14:39:00 heikki Exp $ */ #if HAVE_CONFIG_H @@ -70,8 +70,8 @@ void yaz_log_init_file (const char *fname) if (!l_file) l_file = stderr; if (!fname || !*fname) - return; - if (!(new_file = fopen(fname, "a"))) + new_file=stderr; + else if (!(new_file = fopen(fname, "a"))) return; if (l_file != stderr) { @@ -106,7 +106,8 @@ void yaz_log_init(int level, const char *prefix, const char *fname) { yaz_log_init_level (level); yaz_log_init_prefix (prefix); - yaz_log_init_file (fname); + if (fname && *fname) + yaz_log_init_file (fname); } static void (*start_hook_func)(int, const char *, void *) = NULL;