aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-26 15:02:23 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-26 15:02:23 +0000
commit1423ff5180e4f75a977a6d7511064d2b5d311b2a (patch)
treedabc6a2d0450edd6cae08f7b3e22ce0dc8f14d15 /app.c
parentbb65d2e30ad3f60c41392e62f6967cd56da24807 (diff)
fix misplaced } (issue #5518)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6853 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'app.c')
-rwxr-xr-xapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.c b/app.c
index f4afe8045..168af68cd 100755
--- a/app.c
+++ b/app.c
@@ -694,7 +694,6 @@ int ast_play_and_record(struct ast_channel *chan, const char *playfile, const ch
ast_frfree(f);
break;
}
- }
if (f->subclass == '0') {
/* Check for a '0' during message recording also, in case caller wants operator */
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);
break;
}
+ }
if (maxtime) {
time(&end);
if (maxtime < (end - start)) {