diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-19 07:50:47 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-19 07:50:47 +0000 |
commit | 13c32d03f3e640df69327d5127aeeb1e5009e652 (patch) | |
tree | e664c2bcbb57b06eb1a02e73feb31ceac05d57a2 /plugins/imklog | |
parent | 860bcbfe3dbf2cddfed7659520df516a5f86906b (diff) | |
download | rsyslog-13c32d03f3e640df69327d5127aeeb1e5009e652.tar.gz rsyslog-13c32d03f3e640df69327d5127aeeb1e5009e652.tar.xz rsyslog-13c32d03f3e640df69327d5127aeeb1e5009e652.zip |
added flow control options to other input sources
Diffstat (limited to 'plugins/imklog')
-rw-r--r-- | plugins/imklog/imklog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c index 2731e08d..02a4a348 100644 --- a/plugins/imklog/imklog.c +++ b/plugins/imklog/imklog.c @@ -133,7 +133,7 @@ static rsRetVal writeSyslogV(int iPRI, const char *szFmt, va_list va) /* here we must create our message object and supply it to the message queue */ - CHKiRet(parseAndSubmitMessage(LocalHostName, msgBuf, strlen(msgBuf), MSG_DONT_PARSE_HOSTNAME, NOFLAG)); + CHKiRet(parseAndSubmitMessage(LocalHostName, msgBuf, strlen(msgBuf), MSG_DONT_PARSE_HOSTNAME, NOFLAG, eFLOWCTL_LIGHT_DELAY)); finalize_it: RETiRet; |