aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 15:01:59 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 15:01:59 +0000
commit9fed3ea0722a5480ed9ed76bf2c385d70a98d277 (patch)
tree702710cb72f5d923bc74ac2161ce90de5291fd4f /channels
parent94f24352c59a328f45fd0bad073d6db60f60bec4 (diff)
(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: http://svn.digium.com/svn/asterisk/branches/1.4@81012 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5731d7ba1..54dc38262 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;
}