]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Always generate a Newstate event in ast_setstate() instead of making it a
authorRussell Bryant <russell@russellbryant.com>
Sat, 5 Aug 2006 09:01:37 +0000 (09:01 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sat, 5 Aug 2006 09:01:37 +0000 (09:01 +0000)
Newchannel event if the state was AST_STATE_DOWN.  The Newchannel event will
always be generated in ast_request(), so this just causes a duplicated
Newchannel event in some cases.
(issue #7506, repoted by capouch, fixed by me)

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

channel.c

index 830def79600e8f49296828cfd518487fe4aa0c01..738c6581b86ddb23cef52bdc6c45b80b0bd49f4a 100644 (file)
--- a/channel.c
+++ b/channel.c
@@ -3190,8 +3190,7 @@ int ast_setstate(struct ast_channel *chan, int state)
 
        chan->_state = state;
        ast_device_state_changed_literal(chan->name);
-       manager_event(EVENT_FLAG_CALL,
-                     (oldstate == AST_STATE_DOWN) ? "Newchannel" : "Newstate",
+       manager_event(EVENT_FLAG_CALL, "Newstate",
                      "Channel: %s\r\n"
                      "State: %s\r\n"
                      "CallerID: %s\r\n"