aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_zapbarge.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_zapbarge.c')
-rwxr-xr-xapps/app_zapbarge.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/app_zapbarge.c b/apps/app_zapbarge.c
index 148543381..3f3a8ae66 100755
--- a/apps/app_zapbarge.c
+++ b/apps/app_zapbarge.c
@@ -267,14 +267,17 @@ static int conf_exec(struct ast_channel *chan, void *data)
int confno = 0;
char confstr[80] = "";
+ LOCAL_USER_ADD(u);
+
if (data && !ast_strlen_zero(data)) {
if ((sscanf(data, "Zap/%d", &confno) != 1) &&
(sscanf(data, "%d", &confno) != 1)) {
ast_log(LOG_WARNING, "ZapBarge Argument (if specified) must be a channel number, not '%s'\n", (char *)data);
+ LOCAL_USER_REMOVE(u);
return 0;
}
}
- LOCAL_USER_ADD(u);
+
if (chan->_state != AST_STATE_UP)
ast_answer(chan);