From 226719ab81a6a82851e26f5ae754fc00a729d942 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 1 May 2009 20:02:41 +0000 Subject: [PATCH] Merged revisions 191560 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r191560 | tilghman | 2009-05-01 15:01:21 -0500 (Fri, 01 May 2009) | 13 lines Merged revisions 191559 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r191559 | tilghman | 2009-05-01 15:00:23 -0500 (Fri, 01 May 2009) | 6 lines SIP Response 410 maps to cause code 22 (or 23), not 1. (closes issue #14993) Reported by: BigJimmy Patches: causepatch uploaded by BigJimmy (license 371) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@191562 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 1227e8ed6d..c44cce6d03 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4985,7 +4985,7 @@ static int hangup_sip2cause(int cause) case 409: /* Conflict */ return AST_CAUSE_NORMAL_TEMPORARY_FAILURE; case 410: /* Gone */ - return AST_CAUSE_UNALLOCATED; + return AST_CAUSE_NUMBER_CHANGED; case 411: /* Length required */ return AST_CAUSE_INTERWORKING; case 413: /* Request entity too large */