]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 191775 via svnmerge from
authorKevin P. Fleming <kpfleming@digium.com>
Sat, 2 May 2009 18:45:56 +0000 (18:45 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Sat, 2 May 2009 18:45:56 +0000 (18:45 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r191775 | kpfleming | 2009-05-02 20:39:48 +0200 (Sat, 02 May 2009) | 5 lines

  Fix an error in queue_log file rotation optimization code

  This code was copy-and-pasted without properly changing references to event_rotate into queue_rotate, so under some conditions the log rotation would rotate queue_log even though it was not necessary.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@191777 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/logger.c

index 25cdfd1ed58b45b84f3d147af26d4701d96da1a0..9ab2f63c9f561ae241fc779b8fd2b16e2a2f23ff 100644 (file)
@@ -619,14 +619,13 @@ static int reload_logger(int rotate)
                                fclose(qlog);
                                qlog = NULL;
                        } else
-                               event_rotate = 0;
+                               queue_rotate = 0;
                } else {
                        fclose(qlog);
                        qlog = NULL;
                }
        } else 
                queue_rotate = 0;
-       qlog = NULL;
 
        ast_mkdir(ast_config_AST_LOG_DIR, 0777);