fixed compilation issue concerning json_bool not declared
[ppastats.git] / src / lp_json.c
index c9379c5..ddb8f31 100644 (file)
 #include "lp_json.h"
 #include "lp_ws.h"
 
+/* Declares json_bool to have consistent code even with
+   old json lib releases using boolean instead of json_bool.*/
+#ifndef json_bool
+typedef boolean json_bool;
+#endif
+
 static time_t json_to_time(json_object *json)
 {
        const char *str;