[asterisk-commits] rizzo: branch rizzo/astobj2 r47503 -
/team/rizzo/astobj2/channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Nov 12 07:53:14 MST 2006
Author: rizzo
Date: Sun Nov 12 08:53:13 2006
New Revision: 47503
URL: http://svn.digium.com/view/asterisk?view=rev&rev=47503
Log:
merge version 47467, cleanup and add a missing return
Modified:
team/rizzo/astobj2/channels/chan_sip.c
Modified: team/rizzo/astobj2/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/team/rizzo/astobj2/channels/chan_sip.c?view=diff&rev=47503&r1=47502&r2=47503
==============================================================================
--- team/rizzo/astobj2/channels/chan_sip.c (original)
+++ team/rizzo/astobj2/channels/chan_sip.c Sun Nov 12 08:53:13 2006
@@ -13640,14 +13640,13 @@
}
if (!replace_id && gotdest) { /* No matching extension found */
- if (gotdest == 1 && ast_test_flag(&p->flags[1], SIP_PAGE2_ALLOWOVERLAP)) {
+ if (gotdest == 1 && ast_test_flag(&p->flags[1], SIP_PAGE2_ALLOWOVERLAP))
transmit_response_reliable(p, "484 Address Incomplete", req);
- update_call_counter(p, DEC_CALL_LIMIT);
- } else {
+ else
transmit_response_reliable(p, "404 Not Found", req);
- update_call_counter(p, DEC_CALL_LIMIT);
- }
+ update_call_counter(p, DEC_CALL_LIMIT);
sip_scheddestroy(p, DEFAULT_TRANS_TIMEOUT);
+ return 0;
} else {
/* If no extension was specified, use the s one */
/* Basically for calling to IP/Host name only */
More information about the asterisk-commits
mailing list