When formatting DB queries, if we get a input key of type `RAW`, we log a message indicating that `RAW` is unsupported, then fall through to the default case, which logs another message that the key type is unknown. Add the missing `break` statement to prevent the fall-through. Signed-off-by: Jeremy Sowden <jeremy@xxxxxxxxxx> --- util/db.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util/db.c b/util/db.c index c9aec418e9ed..f0711146867f 100644 --- a/util/db.c +++ b/util/db.c @@ -388,6 +388,7 @@ static void __format_query_db(struct ulogd_pluginstance *upi, char *start) case ULOGD_RET_RAW: ulogd_log(ULOGD_NOTICE, "Unsupported RAW type is unsupported in SQL output"); + break; default: ulogd_log(ULOGD_NOTICE, "unknown type %d for %s\n", -- 2.33.0