diff options
author | tb <> | 2023-03-10 16:41:32 +0000 |
---|---|---|
committer | tb <> | 2023-03-10 16:41:32 +0000 |
commit | a91b508418797103e43791f39e4924495339c53a (patch) | |
tree | e4553a429be2de376f575580a814ad990cfcbf80 /src/lib | |
parent | 54398fc74dd9018ac351906f678ed25f5e0ff3af (diff) | |
download | openbsd-a91b508418797103e43791f39e4924495339c53a.tar.gz openbsd-a91b508418797103e43791f39e4924495339c53a.tar.bz2 openbsd-a91b508418797103e43791f39e4924495339c53a.zip |
Expose UI_null()
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/ui/ui.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ui/ui.h b/src/lib/libcrypto/ui/ui.h index 0f662455ed..79d807f03c 100644 --- a/src/lib/libcrypto/ui/ui.h +++ b/src/lib/libcrypto/ui/ui.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ui.h,v 1.16 2022/12/26 07:18:52 jmc Exp $ */ | 1 | /* $OpenBSD: ui.h,v 1.17 2023/03/10 16:41:32 tb Exp $ */ |
2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
3 | * project 2001. | 3 | * project 2001. |
4 | */ | 4 | */ |
@@ -257,9 +257,7 @@ const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth); | |||
257 | /* The method with all the built-in thingies */ | 257 | /* The method with all the built-in thingies */ |
258 | UI_METHOD *UI_OpenSSL(void); | 258 | UI_METHOD *UI_OpenSSL(void); |
259 | 259 | ||
260 | #if defined(LIBRESSL_INTERNAL) || defined(LIBRESSL_NEXT_API) | ||
261 | const UI_METHOD *UI_null(void); | 260 | const UI_METHOD *UI_null(void); |
262 | #endif | ||
263 | 261 | ||
264 | /* | 262 | /* |
265 | * ---------- For method writers ---------- | 263 | * ---------- For method writers ---------- |