aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-03 19:57:03 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-03 19:57:03 +0000
commit3abc32f081747b834820a7b634f99eace12e1c56 (patch)
tree3e82437327082d646e5b0a3d352e16ceb215c574 /channels/chan_sip.c
parent0424cbba6e9dce8dd6d247a1ad13b125ca513b41 (diff)
Merged revisions 321812-321813 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r321812 | rmudgett | 2011-06-03 14:55:21 -0500 (Fri, 03 Jun 2011) | 1 line Correct IAX2 and SIP event subscription description string. ........ r321813 | rmudgett | 2011-06-03 14:56:09 -0500 (Fri, 03 Jun 2011) | 1 line Constify subscription description parameter string. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@321814 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index a4f2febc1..f4fe16a9b 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -14248,9 +14248,7 @@ static void network_change_event_subscribe(void)
{
if (!network_change_event_subscription) {
network_change_event_subscription = ast_event_subscribe(AST_EVENT_NETWORK_CHANGE,
- network_change_event_cb,
- "SIP Network Change ",
- NULL, AST_EVENT_IE_END);
+ network_change_event_cb, "SIP Network Change", NULL, AST_EVENT_IE_END);
}
}