Package: 1138332 Version: 1.12.11+20110422.1+1e14eea~dfsg-6.1 Followup-For: Bug #1138332 X-Debbugs-Cc: [email protected] Control: tags -1 patch
Please find attached a patch that fixes this issue. -- System Information: Debian Release: trixie/sid APT prefers noble-updates APT policy: (500, 'noble-updates'), (500, 'noble-security'), (500, 'noble'), (100, 'noble-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.8.0-117-generic (SMP w/12 CPU threads; PREEMPT) Kernel taint flags: TAINT_WARN Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
Description: Fix for OpenSSL4 compatibility Replace removed TLSv1_client_method() with TLS_client_method() in stun.c. TLSv1_client_method() was removed in OpenSSL 4.0. Author: Ravi Kant Sharma <[email protected]> Bug-Ubuntu: https://bugs.launchpad.net/bugs/2154879 Bug-Debian: https://bugs.debian.org/1138332 Forwarded: no --- a/libsofia-sip-ua/stun/stun.c +++ b/libsofia-sip-ua/stun/stun.c @@ -1353,7 +1353,7 @@ /* openssl initiation */ SSLeay_add_ssl_algorithms(); SSL_load_error_strings(); - ctx = SSL_CTX_new(TLSv1_client_method()); + ctx = SSL_CTX_new(TLS_client_method()); self->sh_ctx = ctx; if (ctx == NULL) {
