diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-01-08 12:49:02 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-01-08 12:49:02 +0100 |
commit | bbb2066d17824f366d0f83a010cae6ebe99d4fa0 (patch) | |
tree | 540efffa73888dc44ea5ffc55fefc201e18d0966 /plugins/mmjsonparse/mmjsonparse.c | |
parent | 3b0f635bd579c4cc00e189871e77ef120a6c6a4d (diff) | |
download | rsyslog-bbb2066d17824f366d0f83a010cae6ebe99d4fa0.tar.gz rsyslog-bbb2066d17824f366d0f83a010cae6ebe99d4fa0.tar.bz2 rsyslog-bbb2066d17824f366d0f83a010cae6ebe99d4fa0.zip |
bugfix: mmjsonparse errornously returned action error when no CEE cookie was present.
Diffstat (limited to 'plugins/mmjsonparse/mmjsonparse.c')
-rw-r--r-- | plugins/mmjsonparse/mmjsonparse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mmjsonparse/mmjsonparse.c b/plugins/mmjsonparse/mmjsonparse.c index 40cfa919..a13962ab 100644 --- a/plugins/mmjsonparse/mmjsonparse.c +++ b/plugins/mmjsonparse/mmjsonparse.c @@ -172,6 +172,7 @@ finalize_it: jval = json_object_new_string((char*)buf); json_object_object_add(json, "msg", jval); msgAddJSON(pMsg, (uchar*)"!", json); + iRet = RS_RET_OK; } MsgSetParseSuccess(pMsg, bSuccess); ENDdoAction |