summaryrefslogtreecommitdiffstats
path: root/var.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-21 17:39:36 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-21 17:39:36 +0000
commitd74898029f38c59a316716e734eb5115c5a4614c (patch)
treedeeecc3b3781f3ea7455f57ed16b823a859cfd83 /var.c
parentabd0b45c447caa628bde2ceb6406c56bd7b56003 (diff)
downloadrsyslog-d74898029f38c59a316716e734eb5115c5a4614c.tar.gz
rsyslog-d74898029f38c59a316716e734eb5115c5a4614c.tar.xz
rsyslog-d74898029f38c59a316716e734eb5115c5a4614c.zip
- modified parser and tokenizer to support slight ABNF modifications from
yesterday - change in ABNF was wrong - made a slightly different change - fixed bugs in tokenizer - expression compiler finished (except bugs, of course ;))
Diffstat (limited to 'var.c')
-rw-r--r--var.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/var.c b/var.c
index e199a0ee..9947f159 100644
--- a/var.c
+++ b/var.c
@@ -78,6 +78,12 @@ CODESTARTobjDebugPrint(var)
case VARTYPE_CSTR:
dbgoprint((obj_t*) pThis, "type: cstr, val '%s'\n", rsCStrGetSzStr(pThis->val.vpCStr));
break;
+ case VARTYPE_INT64:
+ dbgoprint((obj_t*) pThis, "type: int64, val %lld\n", pThis->val.vInt64);
+ break;
+ case VARTYPE_INT:
+ dbgoprint((obj_t*) pThis, "type: int64, val %d\n", pThis->val.vInt);
+ break;
default:
dbgoprint((obj_t*) pThis, "type %d currently not suppored in debug output\n", pThis->varType);
break;