summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-06-14 11:21:44 +0100
committerMatt Caswell <matt@openssl.org>2016-06-14 11:21:44 +0100
commita45dca668e375bb4f4eaaf98521a3c3f5f82a0c9 (patch)
tree0a68e8aa72e83045194eef49fd1de092bb326f03
parente7653f3bab1d44b4dad65637982e72a15ede0a49 (diff)
downloadopenssl-new-a45dca668e375bb4f4eaaf98521a3c3f5f82a0c9.tar.gz
Add missing break statement
The -psk option processing was falling through to the -srp option processing in the ciphers app. Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--apps/ciphers.c1
1 files changed, 1 insertions, 0 deletions
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;