diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-04 12:15:59 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-04 12:15:59 +0200 |
commit | 9e434f19a9baa4a6f411808b5cb6bc22d6a32781 (patch) | |
tree | 36b6ee12c665a9eb781e1984d479002bf4680ef1 /runtime/rsyslog.c | |
parent | 768836ab79268e1091fc3af8bb920c03287db91a (diff) | |
download | rsyslog-9e434f19a9baa4a6f411808b5cb6bc22d6a32781.tar.gz rsyslog-9e434f19a9baa4a6f411808b5cb6bc22d6a32781.tar.bz2 rsyslog-9e434f19a9baa4a6f411808b5cb6bc22d6a32781.zip |
cleaned up stream class ...
... and also made it callable via an rsyslog interface rather then
relying on the OS loader (important if we go for using it inside
loadbale modules, which we soon possible will)
Diffstat (limited to 'runtime/rsyslog.c')
-rw-r--r-- | runtime/rsyslog.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/rsyslog.c b/runtime/rsyslog.c index 8df100a1..81550f12 100644 --- a/runtime/rsyslog.c +++ b/runtime/rsyslog.c @@ -150,8 +150,6 @@ rsrtInit(char **ppErrObj, obj_if_t *pObjIF) CHKiRet(datetimeClassInit(NULL)); if(ppErrObj != NULL) *ppErrObj = "msg"; CHKiRet(msgClassInit(NULL)); - if(ppErrObj != NULL) *ppErrObj = "str,"; - CHKiRet(strmClassInit(NULL)); if(ppErrObj != NULL) *ppErrObj = "wti"; CHKiRet(wtiClassInit(NULL)); if(ppErrObj != NULL) *ppErrObj = "wtp"; |