Fix some whitespace issues

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11817 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2006-03-04 18:12:02 +00:00
parent c88e03113f
commit 24c1501690

View File

@@ -4299,24 +4299,24 @@ static struct ast_frame *zt_handle_event(struct ast_channel *ast)
} }
break; break;
case ZT_EVENT_POLARITY: case ZT_EVENT_POLARITY:
/* /*
* If we get a Polarity Switch event, check to see * If we get a Polarity Switch event, check to see
* if we should change the polarity state and * if we should change the polarity state and
* mark the channel as UP or if this is an indication * mark the channel as UP or if this is an indication
* of remote end disconnect. * of remote end disconnect.
*/ */
if (p->polarity == POLARITY_IDLE) { if (p->polarity == POLARITY_IDLE) {
p->polarity = POLARITY_REV; p->polarity = POLARITY_REV;
if (p->answeronpolarityswitch && if (p->answeronpolarityswitch &&
((ast->_state == AST_STATE_DIALING) || ((ast->_state == AST_STATE_DIALING) ||
(ast->_state == AST_STATE_RINGING))) { (ast->_state == AST_STATE_RINGING))) {
ast_log(LOG_DEBUG, "Answering on polarity switch!\n"); ast_log(LOG_DEBUG, "Answering on polarity switch!\n");
ast_setstate(p->owner, AST_STATE_UP); ast_setstate(p->owner, AST_STATE_UP);
if (p->hanguponpolarityswitch) { if (p->hanguponpolarityswitch) {
gettimeofday(&p->polaritydelaytv, NULL); gettimeofday(&p->polaritydelaytv, NULL);
} }
} else } else
ast_log(LOG_DEBUG, "Ignore switch to REVERSED Polarity on channel %d, state %d\n", p->channel, ast->_state); ast_log(LOG_DEBUG, "Ignore switch to REVERSED Polarity on channel %d, state %d\n", p->channel, ast->_state);
} }
/* Removed else statement from here as it was preventing hangups from ever happening*/ /* Removed else statement from here as it was preventing hangups from ever happening*/
/* Added AST_STATE_RING in if statement below to deal with calling party hangups that take place when ringing */ /* Added AST_STATE_RING in if statement below to deal with calling party hangups that take place when ringing */