From 788b0a1692618872b1e6c2f13445dbf7721f7c02 Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 5 Jul 2023 08:39:40 +0000 Subject: Drop useless ossl_ prefixes discussed with jsing --- src/lib/libcrypto/ecdh/ech_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/ecdh/ech_lib.c') diff --git a/src/lib/libcrypto/ecdh/ech_lib.c b/src/lib/libcrypto/ecdh/ech_lib.c index eb1b6bfebc..52019b01c1 100644 --- a/src/lib/libcrypto/ecdh/ech_lib.c +++ b/src/lib/libcrypto/ecdh/ech_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ech_lib.c,v 1.22 2023/06/25 19:17:43 tb Exp $ */ +/* $OpenBSD: ech_lib.c,v 1.23 2023/07/05 08:39:40 tb Exp $ */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * @@ -90,7 +90,7 @@ static const ECDH_METHOD *default_ECDH_method = NULL; static const ECDH_METHOD openssl_ecdh_meth = { .name = "OpenSSL ECDH method", - .compute_key = ossl_ecdh_compute_key, + .compute_key = ecdh_compute_key, }; const ECDH_METHOD * -- cgit v1.2.3-55-g6feb