aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-22 23:08:45 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-22 23:08:45 +0000
commit5d4af0b9c45b58c3c098116b35f116d8930e52c8 (patch)
tree5fb480309520bcf40cb322f1594665c392049c92 /apps/app_dial.c
parenta84f1b5bc686c6b890a82231c9c6065734f77ef7 (diff)
Fix the compile problem
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1202 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 953e799a6..939e949d1 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -228,7 +228,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
case AST_CONTROL_BUSY:
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "%s is busy\n", o->chan->name);
- ast_hangup(o->chan)
+ ast_hangup(o->chan);
o->chan = NULL;
o->stillgoing = 0;
if (in->cdr)
@@ -238,7 +238,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
case AST_CONTROL_CONGESTION:
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "%s is circuit-busy\n", o->chan->name);
- ast_hangup(o->chan)
+ ast_hangup(o->chan);
o->chan = NULL;
o->stillgoing = 0;
if (in->cdr)
@@ -281,7 +281,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
}
ast_frfree(f);
} else {
- ast_hangup(o->chan)
+ ast_hangup(o->chan);
o->chan = NULL;
o->stillgoing = 0;
}