]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
(closes issue #10561)
authorJoshua Colp <jcolp@digium.com>
Mon, 27 Aug 2007 15:01:59 +0000 (15:01 +0000)
committerJoshua Colp <jcolp@digium.com>
Mon, 27 Aug 2007 15:01:59 +0000 (15:01 +0000)
Reported by: jesselang
Patches:
      chan_sip-ChannelReload-20080825.patch uploaded by jesselang (license 202)
Remove an extra \r\n to make the ChannelReload event conform with every other event.

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

channels/chan_sip.c

index 5731d7ba1a2e5b5c53984a38cf6de24dcaf5d95c..54dc38262b20e705befb0bd5705066083f8d111a 100644 (file)
@@ -17001,7 +17001,7 @@ static int reload_config(enum channelreloadreason reason)
        notify_types = ast_config_load(notify_config);
 
        /* Done, tell the manager */
-       manager_event(EVENT_FLAG_SYSTEM, "ChannelReload", "Channel: SIP\r\nReloadReason: %s\r\nRegistry_Count: %d\r\nPeer_Count: %d\r\nUser_Count: %d\r\n\r\n", channelreloadreason2txt(reason), registry_count, peer_count, user_count);
+       manager_event(EVENT_FLAG_SYSTEM, "ChannelReload", "Channel: SIP\r\nReloadReason: %s\r\nRegistry_Count: %d\r\nPeer_Count: %d\r\nUser_Count: %d\r\n", channelreloadreason2txt(reason), registry_count, peer_count, user_count);
 
        return 0;
 }