Fix description text for IF function. (Bug #4966)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6336 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Josh Roberson
2005-08-15 17:06:30 +00:00
parent 3b12e18473
commit 88ea13f07e

View File

@@ -94,7 +94,7 @@ static char *builtin_function_if(struct ast_channel *chan, char *cmd, char *data
iffalse = data;
if (!expr || ast_strlen_zero(expr) || !(iftrue || iffalse)) {
ast_log(LOG_WARNING, "Syntax IF(<timespec>?[<true>][:<false>])\n");
ast_log(LOG_WARNING, "Syntax IF(<expr>?[<true>][:<false>])\n");
return NULL;
}