aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_followme.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-30 15:10:13 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-30 15:10:13 +0000
commit2e541055f050f47a9e0cc99e04fe41e2439c99fe (patch)
tree052804cae6a4af713ee5bbb58cd64df9c5756fa0 /apps/app_followme.c
parent0ff8920cbef76426275465a699c02ad8d3734512 (diff)
Return 1.4 to a state where it builds. Changing the arguments to a function and not changing where they are used is bad, mmmk?
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@87534 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_followme.c')
-rw-r--r--apps/app_followme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_followme.c b/apps/app_followme.c
index 70327b418..f4acd7bf1 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -404,7 +404,7 @@ static int reload_followme(void)
idx++;
numorder = idx;
}
- cur = create_followme_number(numberstr, timeout, numorder);
+ cur = create_followme_number(numberstr, "", timeout, numorder);
AST_LIST_INSERT_TAIL(&f->numbers, cur, entry);
} else {
profile_set_param(f, var->name, var->value, var->lineno, 1);
@@ -979,7 +979,7 @@ static int app_exec(struct ast_channel *chan, void *data)
(and locked) while we're trying to do a follow-me */
AST_LIST_HEAD_INIT_NOLOCK(&targs.cnumbers);
AST_LIST_TRAVERSE(&f->numbers, nm, entry) {
- newnm = create_followme_number(nm->number, nm->timeout, nm->order);
+ newnm = create_followme_number(nm->number, "", nm->timeout, nm->order);
AST_LIST_INSERT_TAIL(&targs.cnumbers, newnm, entry);
}
ast_mutex_unlock(&f->lock);