[asterisk-commits] file: branch 1.4 r103763 - /branches/1.4/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Feb 18 09:33:14 CST 2008
Author: file
Date: Mon Feb 18 09:33:14 2008
New Revision: 103763
URL: http://svn.digium.com/view/asterisk?view=rev&rev=103763
Log:
Don't care if the extension given doesn't exist for subscription based MWI.
Modified:
branches/1.4/channels/chan_sip.c
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=103763&r1=103762&r2=103763
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Mon Feb 18 09:33:14 2008
@@ -14863,7 +14863,7 @@
parse_ok_contact(p, req);
build_contact(p);
- if (gotdest) {
+ if (strcmp(event, "message-summary") && gotdest) {
transmit_response(p, "404 Not Found", req);
ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
if (authpeer)
More information about the asterisk-commits
mailing list