projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7653f3
)
Add missing break statement
author
Matt Caswell
<matt@openssl.org>
Tue, 14 Jun 2016 10:21:44 +0000
(11:21 +0100)
committer
Matt Caswell
<matt@openssl.org>
Tue, 14 Jun 2016 10:21:44 +0000
(11:21 +0100)
The -psk option processing was falling through to the -srp option
processing in the ciphers app.
Reviewed-by: Richard Levitte <levitte@openssl.org>
apps/ciphers.c
patch
|
blob
|
history
diff --git
a/apps/ciphers.c
b/apps/ciphers.c
index 9e3b633700e336a8b61f68cd79d867e1a947f448..c0f43ea2e8b4b1a9aff68af4cafd07e8f2b2189f 100644
(file)
--- 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;