From a45dca668e375bb4f4eaaf98521a3c3f5f82a0c9 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 14 Jun 2016 11:21:44 +0100 Subject: [PATCH] Add missing break statement The -psk option processing was falling through to the -srp option processing in the ciphers app. Reviewed-by: Richard Levitte --- apps/ciphers.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.40.0