Your message dated Fri, 2 Aug 2019 13:07:01 +0200 with message-id <[email protected]> and subject line Re: libradsec: please make the ssl patch retro-compatible has caused the Debian Bug report #875409, regarding libradsec: please make the ssl patch retro-compatible to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 875409: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875409 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Source: libradsec Severity: normal Version: 0.0.5-4 Tags: patch Hello, the following patch makes the package work with older ssl implementations (e.g. on systems where everything is defaulted to openssl 1.0 ./radsecproxy/tlscommon.c @@ -37,6 +37,10 @@ #include "hostport_types.h" #include "radsecproxy.h" +#if OPENSSL_VERSION_NUMBER < 0x10100000L +#define TLS_method SSLv23_method +#endif + static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) { int pwdlen = strlen(userdata); if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */
--- End Message ---
--- Begin Message ---On Mon, 11 Sep 2017 08:53:04 +0000 (UTC) Gianfranco Costamagna <[email protected]> wrote: > Source: libradsec > Severity: normal > Version: 0.0.5-4 > Tags: patch > > Hello, the following patch makes the package work with older ssl > implementations (e.g. on systems where > everything is defaulted to openssl 1.0 > > ./radsecproxy/tlscommon.c > @@ -37,6 +37,10 @@ > #include "hostport_types.h" > #include "radsecproxy.h" > > +#if OPENSSL_VERSION_NUMBER < 0x10100000L > +#define TLS_method SSLv23_method > +#endif > + > static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) { > int pwdlen = strlen(userdata); > if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */ > > closing, openssl 1.0 is not a thing anymore G.
--- End Message ---

