From 694d75cb1eaed143238ffc563414047dbfc77752 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 9 Sep 2005 11:29:54 +0000 Subject: [PATCH] Fixed bug #410: Can not rotate log --- src/log.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/log.c b/src/log.c index 06540ce..f459fb1 100644 --- a/src/log.c +++ b/src/log.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: log.c,v 1.26 2005-09-09 10:33:45 adam Exp $ + * $Id: log.c,v 1.27 2005-09-09 11:29:54 adam Exp $ */ /** @@ -164,8 +164,10 @@ static void rotate_log() /* windows can't rename a file if it is open */ fclose(l_file); l_file = stderr; -#endif + MoveFileEx(l_fname, newname, MOVEFILE_REPLACE_EXISTING); +#else rename(l_fname, newname); +#endif yaz_log_reopen(); } -- 1.7.10.4