From adce2272dc75d91b0dd3a9a5c502de99d828eca2 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sat, 26 Sep 2020 00:44:29 +0200 Subject: Removed DISABLE_JSMN define for c-json-stdout (built-in per default). Signed-off-by: Toni Uhlig --- examples/c-json-stdout/c-json-stdout.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'examples/c-json-stdout') diff --git a/examples/c-json-stdout/c-json-stdout.c b/examples/c-json-stdout/c-json-stdout.c index 18c50a491..eb56470e7 100644 --- a/examples/c-json-stdout/c-json-stdout.c +++ b/examples/c-json-stdout/c-json-stdout.c @@ -8,9 +8,7 @@ #include #include "config.h" -#ifdef USE_JSON -#include "jsmn/jsmn.h" -#endif +#include "jsmn.h" static char serv_listen_addr[INET_ADDRSTRLEN] = DISTRIBUTOR_HOST; static uint16_t serv_listen_port = DISTRIBUTOR_PORT; @@ -24,10 +22,8 @@ int main(void) size_t buf_used = 0; size_t json_start = 0; unsigned long long int json_bytes = 0; -#ifdef USE_JSON jsmn_parser parser; jsmntok_t tokens[128]; -#endif if (sockfd < 0) { @@ -100,7 +96,6 @@ int main(void) exit(1); } -#ifdef USE_JSON int r; jsmn_init(&parser); r = jsmn_parse(&parser, @@ -127,9 +122,6 @@ int main(void) } } printf("EoF\n"); -#else - printf("RECV[%llu,%zd]: '%.*s'\n\n", buf_wanted, bytes_read, (int)buf_wanted, buf); -#endif memmove(buf, buf + json_bytes, buf_used - json_bytes); buf_used -= json_bytes; -- cgit v1.2.3