Fix expression handling for string comparisions without quotes (bug #4478)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5919 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-06-17 00:33:00 +00:00
parent e0f057820a
commit 10542f6145
3 changed files with 20 additions and 7 deletions

View File

@@ -310,7 +310,13 @@ Of course, all of the above examples use constants, but would work the same if a
numeric or string constants were replaced with a variable reference ${CALLERIDNUM}, for
instance.
__________________________
NUMBERS VS STRINGS
--------------------------
Tokens consisting only of numbers are converted to 64-bit numbers for most of the
operators. This means that overflows can occur when the numbers get above 18 digits.
Warnings will appear in the logs in this case.
___________________________
CONDITIONALS
---------------------------