diff options
author | tb <> | 2022-12-17 21:59:39 +0000 |
---|---|---|
committer | tb <> | 2022-12-17 21:59:39 +0000 |
commit | 0c1260402b1ede3903c721dcd86f96d56a8292fb (patch) | |
tree | 94d7cca4021be3e74c90760cd4b981f22107456f /src/lib/libcrypto/ui/ui.h | |
parent | 3badb2f37b0b6599d1adea20cfe176f262924ddc (diff) | |
download | openbsd-0c1260402b1ede3903c721dcd86f96d56a8292fb.tar.gz openbsd-0c1260402b1ede3903c721dcd86f96d56a8292fb.tar.bz2 openbsd-0c1260402b1ede3903c721dcd86f96d56a8292fb.zip |
Prepare to provide UI_null()
xmlsec needs this, nothing else. Our linkers link libxmlsec1-openssl,
only warns and since nothing uses this library in ports, this wasn't
noticed for a long time.
Reported by Thomas Mitterfellner
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ui/ui.h')
-rw-r--r-- | src/lib/libcrypto/ui/ui.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ui/ui.h b/src/lib/libcrypto/ui/ui.h index 7755cf4a3a..ee27fd2a49 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.14 2022/07/12 18:43:56 jsing Exp $ */ | 1 | /* $OpenBSD: ui.h,v 1.15 2022/12/17 21:59:39 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,6 +257,9 @@ 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); | ||
262 | #endif | ||
260 | 263 | ||
261 | /* | 264 | /* |
262 | * ---------- For method writers ---------- | 265 | * ---------- For method writers ---------- |