diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-09 13:27:07 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-09 13:27:07 +0000 |
commit | fd8c6452c8a4d51d39eb511046fca09391138a22 (patch) | |
tree | ff95b43b91df5bf2e68c690e38002f30ede5df1c /syslogd.c | |
parent | 2146e340706a9de2be02761b7ad7c28034fb91f3 (diff) | |
download | rsyslog-fd8c6452c8a4d51d39eb511046fca09391138a22.tar.gz rsyslog-fd8c6452c8a4d51d39eb511046fca09391138a22.tar.bz2 rsyslog-fd8c6452c8a4d51d39eb511046fca09391138a22.zip |
created a generic stream class (for file access)
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -176,6 +176,7 @@ #include "omdiscard.h" #include "threads.h" #include "queue.h" +#include "stream.h" /* We define our own set of syslog defintions so that we * do not need to rely on (possibly different) implementations. @@ -4651,6 +4652,7 @@ static rsRetVal InitGlobalClasses(void) CHKiRet(objClassInit()); /* *THIS* *MUST* always be the first class initilizere called! */ CHKiRet(MsgClassInit()); + CHKiRet(strmClassInit()); finalize_it: return iRet; |