summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-08-18 07:00:59 +0000
committertb <>2022-08-18 07:00:59 +0000
commite9f16d803a9f3bad60b4a0b70ae1fe2b4a1614a6 (patch)
tree530c1361573ba0d67162cb98aa18c53777eb4006 /src
parentc54903f2a71d453922361378bf5be43319fa74f0 (diff)
downloadopenbsd-e9f16d803a9f3bad60b4a0b70ae1fe2b4a1614a6.tar.gz
openbsd-e9f16d803a9f3bad60b4a0b70ae1fe2b4a1614a6.tar.bz2
openbsd-e9f16d803a9f3bad60b4a0b70ae1fe2b4a1614a6.zip
Tweak prototype to match function definition (n -> index)
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 35fa4c693c..6a4f14d281 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.421 2022/08/17 18:45:25 tb Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.422 2022/08/18 07:00:59 tb 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 *
@@ -1528,7 +1528,7 @@ int tls1_ec_group_id2bits(uint16_t group_id, int *out_bits);
1528int tls1_ec_nid2group_id(int nid, uint16_t *out_group_id); 1528int tls1_ec_nid2group_id(int nid, uint16_t *out_group_id);
1529int tls1_check_group(SSL *s, uint16_t group_id); 1529int tls1_check_group(SSL *s, uint16_t group_id);
1530int tls1_count_shared_groups(const SSL *ssl, size_t *out_count); 1530int tls1_count_shared_groups(const SSL *ssl, size_t *out_count);
1531int tls1_get_shared_group_by_index(const SSL *ssl, size_t n, int *out_nid); 1531int tls1_get_shared_group_by_index(const SSL *ssl, size_t index, int *out_nid);
1532int tls1_get_supported_group(const SSL *s, int *out_nid); 1532int tls1_get_supported_group(const SSL *s, int *out_nid);
1533 1533
1534int ssl_check_clienthello_tlsext_early(SSL *s); 1534int ssl_check_clienthello_tlsext_early(SSL *s);