diff options
| author | tb <> | 2023-07-19 13:34:33 +0000 |
|---|---|---|
| committer | tb <> | 2023-07-19 13:34:33 +0000 |
| commit | 395c09090d48e5b2a6b96e544f5846495551dc77 (patch) | |
| tree | 80792aa4289ce1ee3dbb48c529377b721f396d1f /src | |
| parent | 5ddc63c91eb42090c45a1ee989fb4f8012cb1dab (diff) | |
| download | openbsd-395c09090d48e5b2a6b96e544f5846495551dc77.tar.gz openbsd-395c09090d48e5b2a6b96e544f5846495551dc77.tar.bz2 openbsd-395c09090d48e5b2a6b96e544f5846495551dc77.zip | |
Fix two aliases in libcrypto spotted by the new symbols test
ok jsing
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libssl/bio_ssl.c | 4 | ||||
| -rw-r--r-- | src/lib/libssl/ssl_lib.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/bio_ssl.c b/src/lib/libssl/bio_ssl.c index 08e47dbfac..6dd1699606 100644 --- a/src/lib/libssl/bio_ssl.c +++ b/src/lib/libssl/bio_ssl.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: bio_ssl.c,v 1.39 2023/07/08 16:40:13 beck Exp $ */ | 1 | /* $OpenBSD: bio_ssl.c,v 1.40 2023/07/19 13:34:33 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 | * |
| @@ -577,7 +577,7 @@ BIO_ssl_copy_session_id(BIO *t, BIO *f) | |||
| 577 | return (0); | 577 | return (0); |
| 578 | return (1); | 578 | return (1); |
| 579 | } | 579 | } |
| 580 | LSSL_ALIAS(BIO_new_ssl_connect); | 580 | LSSL_ALIAS(BIO_ssl_copy_session_id); |
| 581 | 581 | ||
| 582 | void | 582 | void |
| 583 | BIO_ssl_shutdown(BIO *b) | 583 | BIO_ssl_shutdown(BIO *b) |
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index b1169b0242..76fcfdec8f 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_lib.c,v 1.311 2023/07/08 16:40:13 beck Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.312 2023/07/19 13:34:33 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 | * |
| @@ -3313,6 +3313,7 @@ void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, int type, int val) | |||
| 3313 | { | 3313 | { |
| 3314 | return (ssl->info_callback); | 3314 | return (ssl->info_callback); |
| 3315 | } | 3315 | } |
| 3316 | LSSL_ALIAS(SSL_get_info_callback); | ||
| 3316 | 3317 | ||
| 3317 | int | 3318 | int |
| 3318 | SSL_state(const SSL *ssl) | 3319 | SSL_state(const SSL *ssl) |
