mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
fix misplaced } (issue #5518)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6853 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
app.c
2
app.c
@@ -694,7 +694,6 @@ int ast_play_and_record(struct ast_channel *chan, const char *playfile, const ch
|
|||||||
ast_frfree(f);
|
ast_frfree(f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (f->subclass == '0') {
|
if (f->subclass == '0') {
|
||||||
/* Check for a '0' during message recording also, in case caller wants operator */
|
/* Check for a '0' during message recording also, in case caller wants operator */
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
@@ -704,6 +703,7 @@ int ast_play_and_record(struct ast_channel *chan, const char *playfile, const ch
|
|||||||
ast_frfree(f);
|
ast_frfree(f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (maxtime) {
|
if (maxtime) {
|
||||||
time(&end);
|
time(&end);
|
||||||
if (maxtime < (end - start)) {
|
if (maxtime < (end - start)) {
|
||||||
|
Reference in New Issue
Block a user