diff options
author | tb <> | 2025-05-10 05:54:39 +0000 |
---|---|---|
committer | tb <> | 2025-05-10 05:54:39 +0000 |
commit | dcbbedc9acedb9203cec6f635f57b433f541d560 (patch) | |
tree | 70b02845e44482dbe558f0dc5d503c5d977aa73d /src/lib/libcrypto/ec/ec_lib.c | |
parent | 7a74ec170c7874b681282a81d43ff70a1fcf67fc (diff) | |
download | openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.tar.gz openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.tar.bz2 openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.zip |
Use err_local.h rather than err.h in most places
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c index 7982d23f06..d760ecfb95 100644 --- a/src/lib/libcrypto/ec/ec_lib.c +++ b/src/lib/libcrypto/ec/ec_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lib.c,v 1.123 2025/03/24 13:07:04 jsing Exp $ */ | 1 | /* $OpenBSD: ec_lib.c,v 1.124 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -68,12 +68,12 @@ | |||
68 | 68 | ||
69 | #include <openssl/bn.h> | 69 | #include <openssl/bn.h> |
70 | #include <openssl/ec.h> | 70 | #include <openssl/ec.h> |
71 | #include <openssl/err.h> | ||
72 | #include <openssl/objects.h> | 71 | #include <openssl/objects.h> |
73 | #include <openssl/opensslv.h> | 72 | #include <openssl/opensslv.h> |
74 | 73 | ||
75 | #include "bn_local.h" | 74 | #include "bn_local.h" |
76 | #include "ec_local.h" | 75 | #include "ec_local.h" |
76 | #include "err_local.h" | ||
77 | 77 | ||
78 | EC_GROUP * | 78 | EC_GROUP * |
79 | EC_GROUP_new(const EC_METHOD *meth) | 79 | EC_GROUP_new(const EC_METHOD *meth) |