[asterisk-commits] oej: branch 1.4 r47463 - in /branches/1.4: ./
channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Nov 10 12:49:48 MST 2006
Author: oej
Date: Fri Nov 10 13:49:48 2006
New Revision: 47463
URL: http://svn.digium.com/view/asterisk?view=rev&rev=47463
Log:
Small cleanup of handle_request_invite() - imported from 1.2 with changes
Modified:
branches/1.4/ (props changed)
branches/1.4/channels/chan_sip.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=47463&r1=47462&r2=47463
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Fri Nov 10 13:49:48 2006
@@ -13100,14 +13100,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