summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2013-01-13 14:40:17 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2013-01-13 14:40:17 +0100
commit8339d54ddcbc93771fb6eb550cbf2d9ade988fb8 (patch)
treefbd8392c5d988350de75f2c0dc1ed8707ca203e2 /action.h
parent3d5c805ab6d4e9b8db0a948cda0f73340f2f326b (diff)
downloadrsyslog-8339d54ddcbc93771fb6eb550cbf2d9ade988fb8.tar.gz
rsyslog-8339d54ddcbc93771fb6eb550cbf2d9ade988fb8.tar.bz2
rsyslog-8339d54ddcbc93771fb6eb550cbf2d9ade988fb8.zip
optimize: do date() call in template processing only if actually needed
Diffstat (limited to 'action.h')
-rw-r--r--action.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/action.h b/action.h
index 6f50156d..dfafe301 100644
--- a/action.h
+++ b/action.h
@@ -68,7 +68,6 @@ struct action_s {
struct modInfo_s *pMod;/* pointer to output module handling this selector */
void *pModData; /* pointer to module data - content is module-specific */
sbool bRepMsgHasMsg; /* "message repeated..." has msg fragment in it (0-no, 1-yes) */
- sbool requiresDateCall;/* do we need to do a date call before creating templates? */
rsRetVal (*submitToActQ)(action_t *, batch_t *);/* function submit message to action queue */
rsRetVal (*qConstruct)(struct queue_s *pThis);
enum { ACT_STRING_PASSING = 0, ACT_ARRAY_PASSING = 1, ACT_MSG_PASSING = 2,