diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-28 16:01:36 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-28 16:01:36 +0000 |
commit | ad0f35124a5bd44628e2fc1a70166fedb24482e8 (patch) | |
tree | 6b1001481ce8b15b9716d3dbd65820fdb8114ee4 /conf.c | |
parent | 0621b1339d7b308a89356a9201eba4562a58085d (diff) | |
download | rsyslog-ad0f35124a5bd44628e2fc1a70166fedb24482e8.tar.gz rsyslog-ad0f35124a5bd44628e2fc1a70166fedb24482e8.tar.xz rsyslog-ad0f35124a5bd44628e2fc1a70166fedb24482e8.zip |
bugfix: removed debugging code that I forgot to remove before releasing
3.12.0 (does not cause harm and happened only during startup)
Diffstat (limited to 'conf.c')
-rw-r--r-- | conf.c | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -799,23 +799,6 @@ dbgprintf("calling expression parser, pp %p ('%s')\n", *pline, *pline); while(isspace(**pline)) ++(*pline); -dbgprintf("expression parser successfully ended, pp %p ('%s')\n", *pline, *pline); - -/* debug aid, try to exec - just now for testing the vm... -- rgerhards, 2008-02-25 */ -vm_t *pVM; -var_t *pResult; -CHKiRet(vm.Construct(&pVM)); -CHKiRet(vm.ConstructFinalize(pVM)); - -CHKiRet(vm.ExecProg(pVM, f->f_filterData.f_expr->pVmprg)); -CHKiRet(vm.PopVarFromStack(pVM, &pResult)); -dbgprintf("result of expression run:\n"); -var.DebugPrint(pResult); - -CHKiRet(vm.Destruct(&pVM)); -/* ...end testing aid... */ - - finalize_it: RUNLOG_VAR("%d", iRet); if(iRet == RS_RET_SYNTAX_ERROR) { |