diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-16 16:41:00 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-16 16:41:00 +0200 |
commit | 53a0ed8b3a03aa5d7bf40cb69b02391e5e5ca9d1 (patch) | |
tree | 8c550d69f70299aea93b156d4bfa97dcd447daf4 /plugins | |
parent | dd7e91f35dd70f0bbf657f0dc21ddc2afdcb0602 (diff) | |
download | rsyslog-53a0ed8b3a03aa5d7bf40cb69b02391e5e5ca9d1.tar.gz rsyslog-53a0ed8b3a03aa5d7bf40cb69b02391e5e5ca9d1.tar.xz rsyslog-53a0ed8b3a03aa5d7bf40cb69b02391e5e5ca9d1.zip |
completed im3195 including some documentation
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/im3195/im3195.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/im3195/im3195.c b/plugins/im3195/im3195.c index 6bc2c4e9..51afd870 100644 --- a/plugins/im3195/im3195.c +++ b/plugins/im3195/im3195.c @@ -42,9 +42,9 @@ #include <assert.h> #include "rsyslog.h" #include "syslogd.h" -#include "liblogging.h" -#include "srAPI.h" -#include "syslogmessage.h" +#include "liblogging/liblogging.h" +#include "liblogging/srAPI.h" +#include "liblogging/syslogmessage.h" #include "module-template.h" #include "cfsysline.h" #include "errmsg.h" @@ -74,7 +74,7 @@ static srAPIObj* pAPI; * best solution, but real-world experience might tell us a * different truth ;) */ -void OnReceive(srAPIObj* __attribute__((unused)) pMyAPI, srSLMGObj* pSLMG) +void OnReceive(srAPIObj __attribute__((unused)) *pMyAPI, srSLMGObj* pSLMG) { uchar *pszRawMsg; uchar *fromHost = (uchar*) "[unset]"; /* TODO: get hostname */ |