X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Flog.c;h=859ca3af70ce7bcd2b3381e7a9f60f6b83df6d76;hb=84d7b06c13daa609e93f353e655c4b02f936d65c;hp=e8aa1a83e5e36865c6bf345a2d5b7a57da3cfb4f;hpb=905df6869e5ad8ab9f34590cce771fe50c444473;p=yaz-moved-to-github.git diff --git a/src/log.c b/src/log.c index e8aa1a8..859ca3a 100644 --- a/src/log.c +++ b/src/log.c @@ -1,8 +1,8 @@ /* - * Copyright (c) 1995-2004, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: log.c,v 1.19 2004-12-30 00:11:00 adam Exp $ + * $Id: log.c,v 1.21 2005-01-15 19:47:13 adam Exp $ */ /** @@ -136,7 +136,13 @@ void yaz_log_reopen(void) if (!*l_fname) new_file = stderr; else if (!(new_file = fopen(l_fname, "a"))) + { + new_file=l_file; + l_file=stderr; /* just to be sure we don't rotate logs and recurse */ + yaz_log(YLOG_WARN|YLOG_ERRNO,"Could not open log file '%s'",l_fname); + l_file=new_file; /* restore to old value, probably stderr as well */ return; + } if (l_file != stderr) { fclose (l_file);