Merged revisions 284631 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r284631 | tilghman | 2010-09-02 00:30:16 -0500 (Thu, 02 Sep 2010) | 7 lines
  
  Don't reset queue stats on a module reload.
  
  (closes issue #17535)
   Reported by: raarts
   Patches: 
         20100819__issue17535.diff.txt uploaded by tilghman (license 14)
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@284632 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2010-09-02 05:31:02 +00:00
parent 7e3f95e00a
commit 8bc90ad39a

View File

@@ -8186,7 +8186,7 @@ static int load_module(void)
static int reload(void)
{
struct ast_flags mask = {AST_FLAGS_ALL,};
struct ast_flags mask = {AST_FLAGS_ALL & ~QUEUE_RESET_STATS,};
ast_unload_realtime("queue_members");
reload_handler(1, &mask, NULL);
return 0;