diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-11-04 15:34:31 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-11-04 15:34:31 +0100 |
commit | aa2e8ea15b2001f131ebd196c180cc82aceb57b4 (patch) | |
tree | 5d285066e3ce83fc0ada6059174e6dfcd2d78632 /tools | |
parent | b6a92e2f23895cadf9f0ea2de64021912bd2eeb0 (diff) | |
download | rsyslog-aa2e8ea15b2001f131ebd196c180cc82aceb57b4.tar.gz rsyslog-aa2e8ea15b2001f131ebd196c180cc82aceb57b4.tar.xz rsyslog-aa2e8ea15b2001f131ebd196c180cc82aceb57b4.zip |
first complete implementation of loadable parser system
I have now done the necessary cleanup. Looks like everything is in place.
Unfortunately, I do not yet have any actual parser that is not built-in,
but I think we can postpone working on that when the first one appears.
I don't expect troubles in that case, but you never know ;)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/syslogd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index 5b7f1e65..eef3bb82 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -2176,6 +2176,7 @@ GlobalClassExit(void) objRelease(rule, CORE_COMPONENT); objRelease(expr, CORE_COMPONENT); vmClassExit(); /* this is hack, currently core_modules do not get this automatically called */ + parserClassExit(); /* this is hack, currently core_modules do not get this automatically called */ objRelease(datetime, CORE_COMPONENT); /* TODO: implement the rest of the deinit */ |