From: Matt Caswell Date: Tue, 14 Jun 2016 10:21:44 +0000 (+0100) Subject: Add missing break statement X-Git-Tag: OpenSSL_1_1_0-pre6~459 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a45dca668e375bb4f4eaaf98521a3c3f5f82a0c9;p=oweals%2Fopenssl.git Add missing break statement The -psk option processing was falling through to the -srp option processing in the ciphers app. Reviewed-by: Richard Levitte --- diff --git a/apps/ciphers.c b/apps/ciphers.c index 9e3b633700..c0f43ea2e8 100644 --- a/apps/ciphers.c +++ b/apps/ciphers.c @@ -139,6 +139,7 @@ int ciphers_main(int argc, char **argv) #ifndef OPENSSL_NO_PSK psk = 1; #endif + break; case OPT_SRP: #ifndef OPENSSL_NO_SRP srp = 1;