aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-08-19 10:10:03 +0200
committerIngela Anderton Andin <[email protected]>2014-08-19 10:10:03 +0200
commitde2f549cb6d45bb18622dfad5da6f0b4ad52aedf (patch)
treed7ff1be24f2a4dc031fa67e5d8b7966064fe3f68 /lib
parent847aedbb0199c1e7f9fbc4f8dd0ac14f79c7f89b (diff)
downloadotp-de2f549cb6d45bb18622dfad5da6f0b4ad52aedf.tar.gz
otp-de2f549cb6d45bb18622dfad5da6f0b4ad52aedf.tar.bz2
otp-de2f549cb6d45bb18622dfad5da6f0b4ad52aedf.zip
ssl: Fix boolean expression
Diffstat (limited to 'lib')
-rw-r--r--lib/ssl/src/ssl_handshake.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl
index 97bd3a23e5..94ffd180c5 100644
--- a/lib/ssl/src/ssl_handshake.erl
+++ b/lib/ssl/src/ssl_handshake.erl
@@ -1112,7 +1112,7 @@ certificate_types({KeyExchange, _, _, _}, _) when KeyExchange == rsa;
KeyExchange == ecdhe_rsa ->
<<?BYTE(?RSA_SIGN)>>;
-certificate_types({KeyExchange, _, _, _}, _) when KeyExchange == dhe_dss,
+certificate_types({KeyExchange, _, _, _}, _) when KeyExchange == dhe_dss;
KeyExchange == srp_dss ->
<<?BYTE(?DSS_SIGN)>>;