diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-06 15:05:39 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-06 15:05:39 +0200 |
commit | e0a2745d3f84a2f22ffce029de14e38a6433b402 (patch) | |
tree | 7d18d01a3ee8a23d0f34ea2fd037e400911e794e /plugins/imrelp | |
parent | 02795031a3021698baf857ae0c3af0ce38cd7cd4 (diff) | |
download | rsyslog-e0a2745d3f84a2f22ffce029de14e38a6433b402.tar.gz rsyslog-e0a2745d3f84a2f22ffce029de14e38a6433b402.tar.xz rsyslog-e0a2745d3f84a2f22ffce029de14e38a6433b402.zip |
some cleanup (gotten rid of some more plain chars)
Diffstat (limited to 'plugins/imrelp')
-rw-r--r-- | plugins/imrelp/imrelp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imrelp/imrelp.c b/plugins/imrelp/imrelp.c index 6c969261..3fe030bc 100644 --- a/plugins/imrelp/imrelp.c +++ b/plugins/imrelp/imrelp.c @@ -81,7 +81,7 @@ static relpRetVal onSyslogRcv(uchar *pHostname, uchar __attribute__((unused)) *pIP, uchar *pMsg, size_t lenMsg) { DEFiRet; - parseAndSubmitMessage((char*)pHostname, (char*)pMsg, lenMsg, MSG_PARSE_HOSTNAME, + parseAndSubmitMessage(pHostname, pMsg, lenMsg, MSG_PARSE_HOSTNAME, NOFLAG, eFLOWCTL_LIGHT_DELAY); RETiRet; |