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: https://origsvn.digium.com/svn/asterisk/trunk@321814 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2011-06-03 19:57:03 +00:00
parent c55fb048b2
commit 397c379a7d
4 changed files with 5 additions and 11 deletions

View File

@@ -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);
}
}