diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-29 02:35:12 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-29 02:35:12 +0200 |
commit | afe0c07b416cd89305848e746e5fca7f1cb3a6a3 (patch) | |
tree | a3ed2cb67b38b576ddfa5d26849fd80f39c8e5c9 /lib/json.h | |
parent | ldpd: always advertise labels upon receiving a redistributed route (diff) | |
download | frr-afe0c07b416cd89305848e746e5fca7f1cb3a6a3.tar.xz frr-afe0c07b416cd89305848e746e5fca7f1cb3a6a3.zip |
lib: Fix compile for json
When compiling with the json library instead of the json-c
library allow it to switch back to the old way of printing.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/json.h')
-rw-r--r-- | lib/json.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/json.h b/lib/json.h index 5dbad601a..c8d7fae1c 100644 --- a/lib/json.h +++ b/lib/json.h @@ -26,6 +26,12 @@ #include <json-c/json.h> #else #include <json/json.h> + +/* + * json_object_to_json_string_ext is only available for json-c + * so let's just turn it back to the original usage. + */ +#define json_object_to_json_string_ext(A, B) json_object_to_json_string (A) #endif extern int use_json(const int argc, const char *argv[]); |