aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 16:36:43 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 16:36:43 +0000
commit1765f1195c305ff0bee97fbab34120aa6ddc8f01 (patch)
tree4e862deb71b9c0d447f37e62175fd6705e9e6ffe /pbx.c
parent342ffcc2a1b0d991ad5bc5cc7cbc1420ca7df1e0 (diff)
constify the argument to pbx_checkcondition
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24878 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rw-r--r--pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index e7a7263b4..a2fd93d05 100644
--- a/pbx.c
+++ b/pbx.c
@@ -5480,7 +5480,7 @@ void pbx_builtin_clear_globals(void)
ast_mutex_unlock(&globalslock);
}
-int pbx_checkcondition(char *condition)
+int pbx_checkcondition(const char *condition)
{
if (ast_strlen_zero(condition)) /* NULL or empty strings are false */
return 0;