diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-04 10:07:16 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-04 10:07:16 +0200 |
commit | dd9bdb5566c56a2bb67b09a67410b16e29004568 (patch) | |
tree | bb187eb0ac2081295b59b9003ed6d7c864919f23 /plugins/ommongodb/ommongodb.c | |
parent | 535968f989219a01149fae7876bb83c0fa3aeaec (diff) | |
download | rsyslog-dd9bdb5566c56a2bb67b09a67410b16e29004568.tar.gz rsyslog-dd9bdb5566c56a2bb67b09a67410b16e29004568.tar.bz2 rsyslog-dd9bdb5566c56a2bb67b09a67410b16e29004568.zip |
bugfix: some more build problems with newer json-c versions
Thanks to Michael Biebl for mentioning the problem.
Diffstat (limited to 'plugins/ommongodb/ommongodb.c')
-rw-r--r-- | plugins/ommongodb/ommongodb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ommongodb/ommongodb.c b/plugins/ommongodb/ommongodb.c index 64d501d3..ecfd2518 100644 --- a/plugins/ommongodb/ommongodb.c +++ b/plugins/ommongodb/ommongodb.c @@ -35,7 +35,7 @@ #include <mongo.h> #include <json.h> /* For struct json_object_iter, should not be necessary in future versions */ -#include <json/json_object_private.h> +#include <json_object_private.h> #include "rsyslog.h" #include "conf.h" |