From 55d060c9d221c96ec7b85d0f01bd87754775a59b Mon Sep 17 00:00:00 2001 From: "Schanzenbach, Martin" Date: Sun, 24 Jun 2018 19:02:46 +0200 Subject: [PATCH] fix https://gnunet.org/bugs/view.php?id=4376 --- src/util/common_logging.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/common_logging.c b/src/util/common_logging.c index 85e17248b..c68a034b2 100644 --- a/src/util/common_logging.c +++ b/src/util/common_logging.c @@ -626,6 +626,9 @@ parse_definitions (const char *constname, int force) to_line = INT_MAX; } break; + default: + printf("ERROR: Unable to parse log defintion: Syntax error."); + break; } start = p + 1; state++; @@ -652,6 +655,7 @@ parse_definitions (const char *constname, int force) start = p + 1; break; default: + printf("ERROR: Unable to parse log defintion: Syntax error."); break; } default: -- 2.25.1