Add missing break in switch

Has no effect on execution, the fallthrough does nothing
Closes #208
This commit is contained in:
Matt Johnston 2023-01-03 22:05:14 +08:00
parent c043efb47c
commit 39d955c49f

View File

@ -139,6 +139,7 @@ static void check_signkey_bits(enum signkey_type type, int bits)
dropbear_exit("DSS keys have a fixed size of 1024 bits\n");
exit(EXIT_FAILURE);
}
break;
#endif
default:
(void)0; /* quiet, compiler. ecdsa handles checks itself */