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 /runtime/msg.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 'runtime/msg.c')
-rw-r--r-- | runtime/msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/msg.c b/runtime/msg.c index 36cbd261..03906070 100644 --- a/runtime/msg.c +++ b/runtime/msg.c @@ -43,7 +43,7 @@ #include <libestr.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> #if HAVE_MALLOC_H # include <malloc.h> #endif |