From: James Golovich Date: Thu, 22 Apr 2004 05:24:50 +0000 (+0000) Subject: Fix some comments in chan_zap X-Git-Tag: 1.0.0-rc1~692 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6534f4d668ae64ef7e97622184c4e4a8f27a0f39;p=thirdparty%2Fasterisk.git Fix some comments in chan_zap git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2745 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index f60c3a4f23..b9c3780e3f 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -3523,7 +3523,7 @@ struct ast_frame *zt_read(struct ast_channel *ast) } if (p->subs[index].needbusy) { - /* Send ringing frame if requested */ + /* Send busy frame if requested */ p->subs[index].needbusy = 0; p->subs[index].f.frametype = AST_FRAME_CONTROL; p->subs[index].f.subclass = AST_CONTROL_BUSY; @@ -3532,7 +3532,7 @@ struct ast_frame *zt_read(struct ast_channel *ast) } if (p->subs[index].needcongestion) { - /* Send ringing frame if requested */ + /* Send congestion frame if requested */ p->subs[index].needcongestion = 0; p->subs[index].f.frametype = AST_FRAME_CONTROL; p->subs[index].f.subclass = AST_CONTROL_CONGESTION; @@ -3546,7 +3546,7 @@ struct ast_frame *zt_read(struct ast_channel *ast) } if (p->subs[index].needanswer) { - /* Send ringing frame if requested */ + /* Send answer frame if requested */ p->subs[index].needanswer = 0; p->subs[index].f.frametype = AST_FRAME_CONTROL; p->subs[index].f.subclass = AST_CONTROL_ANSWER;