From 2e541055f050f47a9e0cc99e04fe41e2439c99fe Mon Sep 17 00:00:00 2001 From: file Date: Tue, 30 Oct 2007 15:10:13 +0000 Subject: 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 --- apps/app_followme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/app_followme.c') 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); -- cgit v1.2.3