summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r--src/lib/libssl/ssl_lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c
index fb0920cdf2..bfa312207d 100644
--- a/src/lib/libssl/ssl_lib.c
+++ b/src/lib/libssl/ssl_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_lib.c,v 1.283 2022/01/08 12:59:58 jsing Exp $ */ 1/* $OpenBSD: ssl_lib.c,v 1.284 2022/01/09 15:53:52 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 *
@@ -2235,10 +2235,10 @@ ssl_using_ecc_cipher(SSL *s)
2235} 2235}
2236 2236
2237int 2237int
2238ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s) 2238ssl_check_srvr_ecc_cert_and_alg(SSL *s, X509 *x)
2239{ 2239{
2240 const SSL_CIPHER *cs = S3I(s)->hs.cipher; 2240 const SSL_CIPHER *cs = S3I(s)->hs.cipher;
2241 unsigned long alg_a; 2241 unsigned long alg_a;
2242 2242
2243 alg_a = cs->algorithm_auth; 2243 alg_a = cs->algorithm_auth;
2244 2244