summaryrefslogtreecommitdiffstats
path: root/runtime/msg.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-04-18 16:21:15 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-04-18 16:21:15 +0200
commit7cb5f0cb8c98408bc46f2c07d8480b70d816de7a (patch)
tree5fb9c69e4c2537fca8636d0e14f0d4a3d8190610 /runtime/msg.c
parent68538a9013c59036d8825ef97a0a91552a9e7e99 (diff)
downloadrsyslog-7cb5f0cb8c98408bc46f2c07d8480b70d816de7a.tar.gz
rsyslog-7cb5f0cb8c98408bc46f2c07d8480b70d816de7a.tar.xz
rsyslog-7cb5f0cb8c98408bc46f2c07d8480b70d816de7a.zip
fixed compile bug
actually a regression from last bugfix - I just wonder why the other machine did not complain :-S
Diffstat (limited to 'runtime/msg.c')
-rw-r--r--runtime/msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/msg.c b/runtime/msg.c
index 5eab751d..7b94228c 100644
--- a/runtime/msg.c
+++ b/runtime/msg.c
@@ -1059,7 +1059,7 @@ static rsRetVal MsgSerialize(msg_t *pThis, strm_t *pStrm)
objSerializePTR(pStrm, pCSMSGID, CSTR);
if(pThis->pRuleset != NULL) {
- rulesetGetName(pThis->pRuleset));
+ rulesetGetName(pThis->pRuleset);
CHKiRet(obj.SerializeProp(pStrm, UCHAR_CONSTANT("pszRuleset"), PROPTYPE_PSZ,
rulesetGetName(pThis->pRuleset)));
}