mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
Opaquify ast_channel typedefs, fd arrays, and softhangup flag
Review: https://reviewboard.asterisk.org/r/1784/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@357721 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1381,7 +1381,7 @@ static int waitstream_core(struct ast_channel *c, const char *breakon,
|
||||
|
||||
ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
|
||||
|
||||
return (err || c->_softhangup) ? -1 : 0;
|
||||
return (err || ast_channel_softhangup_internal_flag(c)) ? -1 : 0;
|
||||
}
|
||||
|
||||
int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int ms)
|
||||
|
||||
Reference in New Issue
Block a user