diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-03-05 17:27:02 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-03-05 17:27:02 +0100 |
commit | e5f728face744ee6cfe2924da251a428a16c63d8 (patch) | |
tree | 5fba65f16677d5ac8d9d2691c477b0398a56c6b2 /plugins/imklog/imklog.c | |
parent | 5c09faee34befd6c2fa117055928c810ccf86f91 (diff) | |
parent | 2b03e46acfc52b2933f45ba6ba38a36522163fdf (diff) | |
download | rsyslog-e5f728face744ee6cfe2924da251a428a16c63d8.tar.gz rsyslog-e5f728face744ee6cfe2924da251a428a16c63d8.tar.bz2 rsyslog-e5f728face744ee6cfe2924da251a428a16c63d8.zip |
Merge branch 'v5-stable' into v5-stable-newstats
Conflicts:
configure.ac
Diffstat (limited to 'plugins/imklog/imklog.c')
-rw-r--r-- | plugins/imklog/imklog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c index 4112687a..16adbc21 100644 --- a/plugins/imklog/imklog.c +++ b/plugins/imklog/imklog.c @@ -109,8 +109,8 @@ enqMsg(uchar *msg, uchar* pszTag, int iFacility, int iSeverity) MsgSetRcvFromIP(pMsg, pLocalHostIP); MsgSetHOSTNAME(pMsg, glbl.GetLocalHostName(), ustrlen(glbl.GetLocalHostName())); MsgSetTAG(pMsg, pszTag, ustrlen(pszTag)); - pMsg->iFacility = LOG_FAC(iFacility); - pMsg->iSeverity = LOG_PRI(iSeverity); + pMsg->iFacility = iFacility; + pMsg->iSeverity = iSeverity; CHKiRet(submitMsg(pMsg)); finalize_it: |