aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 17:39:03 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 17:39:03 +0000
commitb2ce10d4026d4444b8a5c78289c64709c3823476 (patch)
tree2671d47a6985d1811a1faca0e8c76809186cf2f2
parent5886ecceb818649fb5f8c605a2c66999b5af25de (diff)
use the correct function name ...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@24911 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_while.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_while.c b/apps/app_while.c
index a0e5ca063..736038ecd 100644
--- a/apps/app_while.c
+++ b/apps/app_while.c
@@ -269,7 +269,7 @@ static int _while_exec(struct ast_channel *chan, void *data, int end)
}
- if (!end && !pbx_check_condition(condition)) {
+ if (!end && !pbx_checkcondition(condition)) {
/* Condition Met (clean up helper vars) */
pbx_builtin_setvar_helper(chan, varname, NULL);
pbx_builtin_setvar_helper(chan, my_name, NULL);