diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 68c067c91c..76f734c8ed 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -18238,7 +18238,7 @@ static int reload_config(enum channelreloadreason reason) notify_types = ast_config_load(notify_config, config_flags); /* Done, tell the manager */ - manager_event(EVENT_FLAG_SYSTEM, "ChannelReload", "ChannelType: 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", "ChannelType: 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; }