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>
This commit is contained in:
Matt Caswell 2016-06-14 11:21:44 +01:00
parent e7653f3bab
commit a45dca668e

View File

@ -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;