summaryrefslogtreecommitdiff
path: root/doc/README.variables
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-06-17 00:33:00 +0000
committerMark Spencer <markster@digium.com>2005-06-17 00:33:00 +0000
commit10542f614569a7c14a2018d98877f9e898edaabf (patch)
treed9fc14eb7b148abc23b71e1984a566e24cd9bc7e /doc/README.variables
parente0f057820a20d7a6b9d1ff18b0e480886673bf4e (diff)
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
Diffstat (limited to 'doc/README.variables')
-rwxr-xr-xdoc/README.variables8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/README.variables b/doc/README.variables
index 3a8a7b48b..1bf900798 100755
--- a/doc/README.variables
+++ b/doc/README.variables
@@ -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
---------------------------