[asterisk-commits] rmudgett: branch rmudgett/hangup_handlers r369085 - /team/rmudgett/hangup_han...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jun 19 15:06:53 CDT 2012


Author: rmudgett
Date: Tue Jun 19 15:06:49 2012
New Revision: 369085

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369085
Log:
Remove zombie debug message from chan_sip.c

Modified:
    team/rmudgett/hangup_handlers/channels/chan_sip.c

Modified: team/rmudgett/hangup_handlers/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/rmudgett/hangup_handlers/channels/chan_sip.c?view=diff&rev=369085&r1=369084&r2=369085
==============================================================================
--- team/rmudgett/hangup_handlers/channels/chan_sip.c (original)
+++ team/rmudgett/hangup_handlers/channels/chan_sip.c Tue Jun 19 15:06:49 2012
@@ -6409,13 +6409,7 @@
 		return 0;
 	}
 
-	if (ast_test_flag(ast_channel_flags(ast), AST_FLAG_ZOMBIE)) {
-		if (p->refer)
-			ast_debug(1, "SIP Transfer: Hanging up Zombie channel %s after transfer ... Call-ID: %s\n", ast_channel_name(ast), p->callid);
-		else
-			ast_debug(1, "Hanging up zombie call. Be scared.\n");
-	} else
-		ast_debug(1, "Hangup call %s, SIP callid %s\n", ast_channel_name(ast), p->callid);
+	ast_debug(1, "Hangup call %s, SIP callid %s\n", ast_channel_name(ast), p->callid);
 
 	sip_pvt_lock(p);
 	if (ast_test_flag(&p->flags[0], SIP_INC_COUNT) || ast_test_flag(&p->flags[1], SIP_PAGE2_CALL_ONHOLD)) {




More information about the asterisk-commits mailing list