From: Matthew Jordan Date: Mon, 30 Sep 2013 19:44:54 +0000 (+0000) Subject: Remove spurious event raised when CDRs are reloaded X-Git-Tag: 12.0.0-alpha2~24^2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa0d221bd32fc1f7c266a247a448e498a3c78a35;p=thirdparty%2Fasterisk.git Remove spurious event raised when CDRs are reloaded The Reload event is now raised by the module loading core. As such, the Reload event in the CDR engine was a duplicate and not needed. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@400194 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/cdr.c b/main/cdr.c index ea0f9c0e4b..02c27108c2 100644 --- a/main/cdr.c +++ b/main/cdr.c @@ -3876,9 +3876,6 @@ static int process_config(int reload) return 1; } - if (reload) { - manager_event(EVENT_FLAG_SYSTEM, "Reload", "Module: CDR\r\nMessage: CDR subsystem reload requested\r\n"); - } return 0; }