aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-25 05:22:40 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-25 05:22:40 +0000
commitd5ae839795fbfd49def8978575b9ae0650ae6c78 (patch)
tree8dbd99ca22791ace02d56f769cdde2f216829acc /funcs
parent131cea90acb24b221fcacd799e40892f234da1c5 (diff)
Merged revisions 48956 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r48956 | russell | 2006-12-25 00:21:20 -0500 (Mon, 25 Dec 2006) | 14 lines Merged revisions 48955 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r48955 | russell | 2006-12-25 00:19:48 -0500 (Mon, 25 Dec 2006) | 6 lines Fix an error introduced by copying and pasting the handling of the >= operator for the MATH function. If a single equal sign was used as an operator, the function would treat it is as if it were the >= operator. Now, it properly handles it as an invalid operator. (issue #8665, patch by tempest1) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48957 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_math.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/funcs/func_math.c b/funcs/func_math.c
index 608135c53..386897dbd 100644
--- a/funcs/func_math.c
+++ b/funcs/func_math.c
@@ -120,7 +120,6 @@ static int math(struct ast_channel *chan, char *cmd, char *parse,
iaction = LTEFUNCTION;
}
} else if ((op = strchr(mvalue1, '='))) {
- iaction = GTFUNCTION;
*op = '\0';
if (*(op + 1) == '=') {
*++op = '\0';