diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-05-15 12:27:45 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-05-15 12:27:45 +0000 |
commit | c5a06f65ee20328b8d0f2276287e223e4fd4a595 (patch) | |
tree | 2b6aa28cd22fe7e54481d1cd5727564bc34fd204 /filter/test.conf | |
parent | f4ab23174688920e44bb4cae6e8b4f280a066e28 (diff) |
Allow other operations than +.
Diffstat (limited to 'filter/test.conf')
-rw-r--r-- | filter/test.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/test.conf b/filter/test.conf index d734d57c..bce8cfec 100644 --- a/filter/test.conf +++ b/filter/test.conf @@ -6,7 +6,7 @@ router id 62.168.0.1; -define xyzzy = 120+10; +#define xyzzy = 120+10; function callme(int arg1; int arg2) int local1; @@ -75,7 +75,7 @@ ip p; { print "Testing filter language:"; i = four; - i = 1230 + i; + i = 12*100 + 60/2 + i; i = ( i + 0 ); print " arithmetics: 1234 = ", i; printn " if statements "; |