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>
This commit is contained in:
Donald Sharp 2016-09-28 20:35:12 -04:00
parent daca38aece
commit afe0c07b41

View File

@ -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[]);