aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:33:14 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:33:14 +0000
commite35d1ec095ff99be9355611f9abe340584e0951a (patch)
tree69bf44fa67dfe108f83e4580f6bff9d7202ed9cb /channels
parent862eadc30bbfc557907efc5d17f67cdd7506b6a7 (diff)
Don't care if the extension given doesn't exist for subscription based MWI.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103763 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 979e5748a..d3baa8d3f 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -14863,7 +14863,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);
ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
if (authpeer)