From a6aa9d4407ec6cb499931b496ccd99156976bed9 Mon Sep 17 00:00:00 2001 From: Stephan Bosch <stephan@dovecot.fi> Date: Sat, 13 Aug 2016 17:42:03 +0200 Subject: [PATCH] lib-sieve: relational extension: Removed dead default in switch statement. Minor complaint by Coverity. --- src/lib-sieve/plugins/relational/mcht-value.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib-sieve/plugins/relational/mcht-value.c b/src/lib-sieve/plugins/relational/mcht-value.c index e89e6d3fe..6373bb40f 100644 --- a/src/lib-sieve/plugins/relational/mcht-value.c +++ b/src/lib-sieve/plugins/relational/mcht-value.c @@ -72,8 +72,6 @@ int mcht_value_match_key return ( cmp_result == 0 ? 1 : 0); case REL_MATCH_NOT_EQUAL: return ( cmp_result != 0 ? 1 : 0); - default: - break; } return -1; -- GitLab