fix MODENDP-124

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9234 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-08-10 01:41:46 +00:00
parent ae0430342b
commit 4796964c5b
1 changed files with 1 additions and 1 deletions

View File

@ -162,6 +162,7 @@ static switch_status_t sofia_on_execute(switch_core_session_t *session)
static int hangup_cause_to_sip(switch_call_cause_t cause)
{
switch (cause) {
case SWITCH_CAUSE_UNALLOCATED_NUMBER:
case SWITCH_CAUSE_NO_ROUTE_TRANSIT_NET:
case SWITCH_CAUSE_NO_ROUTE_DESTINATION:
return 404;
@ -170,7 +171,6 @@ static int hangup_cause_to_sip(switch_call_cause_t cause)
case SWITCH_CAUSE_NO_USER_RESPONSE:
return 408;
case SWITCH_CAUSE_NO_ANSWER:
return 480;
case SWITCH_CAUSE_SUBSCRIBER_ABSENT:
return 480;
case SWITCH_CAUSE_CALL_REJECTED: