From: Joshua Colp Date: Mon, 27 Aug 2007 15:01:59 +0000 (+0000) Subject: (closes issue #10561) X-Git-Tag: 1.4.12~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a47ac4960e0e7f44b0b4b2febafa6455e31156b;p=thirdparty%2Fasterisk.git (closes issue #10561) 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 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 5731d7ba1a..54dc38262b 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -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; }