X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_json.c;h=ddb8f31f836121afa2ab8efff6becda751bff893;hb=06f5d6b7432d639ff3721d56f2c89b7d5b6cb963;hp=c9379c5a707ef023b089da1485aea3161d8ce742;hpb=b59ec44bffce28192c6408fed838c4d593a17c82;p=ppastats.git diff --git a/src/lp_json.c b/src/lp_json.c index c9379c5..ddb8f31 100644 --- a/src/lp_json.c +++ b/src/lp_json.c @@ -26,6 +26,12 @@ #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;