summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-04-01 16:31:41 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-04-01 16:31:41 +0200
commit59d4a52c280c00bccde4be0321bb09665cc11d29 (patch)
tree662ee862f9c6bf3fd01f0edb0fe6206e234e1d38 /runtime
parente4f012eb60f6531f964557ba9eac54048ae2bef8 (diff)
downloadrsyslog-59d4a52c280c00bccde4be0321bb09665cc11d29.tar.gz
rsyslog-59d4a52c280c00bccde4be0321bb09665cc11d29.tar.xz
rsyslog-59d4a52c280c00bccde4be0321bb09665cc11d29.zip
initial work on omprog, an output module to send messages to another program
Diffstat (limited to 'runtime')
-rw-r--r--runtime/conf.c1
-rw-r--r--runtime/rsyslog.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/runtime/conf.c b/runtime/conf.c
index ede15cc7..27ab8bb4 100644
--- a/runtime/conf.c
+++ b/runtime/conf.c
@@ -796,7 +796,6 @@ dbgprintf("calling expression parser, pp %p ('%s')\n", *pline, *pline);
/* debug support - print vmprg after construction (uncomment to use) */
/* vmprgDebugPrint(f->f_filterData.f_expr->pVmprg); */
- vmprgDebugPrint(f->f_filterData.f_expr->pVmprg);
/* we now need to skip whitespace to the action part, else we confuse
* the legacy rsyslog conf parser. -- rgerhards, 2008-02-25
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h
index 899f5e13..2aa1868b 100644
--- a/runtime/rsyslog.h
+++ b/runtime/rsyslog.h
@@ -258,6 +258,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_FUNC_MISSING_EXPR = -2111, /**< no expression after comma in function call (rainerscript) */
RS_RET_INVLD_NBR_ARGUMENTS = -2112, /**< invalid number of arguments for function call (rainerscript) */
RS_RET_INVLD_FUNC = -2113, /**< invalid function name for function call (rainerscript) */
+ RS_RET_ERR_CREAT_PIPE = -2114, /**< error during pipe creation */
+ RS_RET_ERR_FORK = -2115, /**< error during fork() */
/* RainerScript error messages (range 1000.. 1999) */
RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */