aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:35:04 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:35:04 +0000
commit1031efbc5e3aeebd088dd2de9cf9e56765a18dce (patch)
tree74d2ff84e75bf9dc3f5e6526ded160b1a2530178 /channels
parente0fe5f0b64eaa05ed656bbb6641e435774eee181 (diff)
Merged revisions 103763 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r103763 | file | 2008-02-18 11:33:14 -0400 (Mon, 18 Feb 2008) | 2 lines Don't care if the extension given doesn't exist for subscription based MWI. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@103764 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 55f63d2d2..9d755c684 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -17343,7 +17343,7 @@ static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req,
parse_ok_contact(p, req);
build_contact(p);
- if (gotdest) {
+ if (strcmp(event, "message-summary") && gotdest) {
transmit_response(p, "404 Not Found", req);
p->needdestroy = 1;
if (authpeer)