summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/s3_lib.c')
-rw-r--r--src/lib/libssl/s3_lib.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c
index ad627d10d8..3a11d62893 100644
--- a/src/lib/libssl/s3_lib.c
+++ b/src/lib/libssl/s3_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s3_lib.c,v 1.156 2017/08/11 17:54:41 jsing Exp $ */ 1/* $OpenBSD: s3_lib.c,v 1.157 2017/08/12 02:55:22 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -2460,14 +2460,10 @@ ssl3_get_req_cert_types(SSL *s, CBB *cbb)
2460 if ((alg_k & SSL_kDHE) != 0) { 2460 if ((alg_k & SSL_kDHE) != 0) {
2461 if (!CBB_add_u8(cbb, SSL3_CT_RSA_FIXED_DH)) 2461 if (!CBB_add_u8(cbb, SSL3_CT_RSA_FIXED_DH))
2462 return 0; 2462 return 0;
2463 if (!CBB_add_u8(cbb, SSL3_CT_DSS_FIXED_DH))
2464 return 0;
2465 } 2463 }
2466 2464
2467 if (!CBB_add_u8(cbb, SSL3_CT_RSA_SIGN)) 2465 if (!CBB_add_u8(cbb, SSL3_CT_RSA_SIGN))
2468 return 0; 2466 return 0;
2469 if (!CBB_add_u8(cbb, SSL3_CT_DSS_SIGN))
2470 return 0;
2471 2467
2472 /* 2468 /*
2473 * ECDSA certs can be used with RSA cipher suites as well 2469 * ECDSA certs can be used with RSA cipher suites as well