Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 664512
Collapse All | Expand All

(-)spice-gtk-0.35/spice-common/common/ssl_verify.c (-1 / +1 lines)
Lines 33-39 Link Here
33
#include <string.h>
33
#include <string.h>
34
#include <gio/gio.h>
34
#include <gio/gio.h>
35
35
36
#if OPENSSL_VERSION_NUMBER < 0x10100000 || defined (LIBRESSL_VERSION_NUMBER)
36
#if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
37
static const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *asn1)
37
static const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *asn1)
38
{
38
{
39
    return M_ASN1_STRING_data(asn1);
39
    return M_ASN1_STRING_data(asn1);
(-)spice-gtk-0.35/src/bio-gio.c (-1 / +1 lines)
Lines 23-29 Link Here
23
#include "spice-util.h"
23
#include "spice-util.h"
24
#include "bio-gio.h"
24
#include "bio-gio.h"
25
25
26
#if OPENSSL_VERSION_NUMBER < 0x10100000 || defined(LIBRESSL_VERSION_NUMBER)
26
#if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
27
static BIO_METHOD one_static_bio;
27
static BIO_METHOD one_static_bio;
28
28
29
static int BIO_meth_set_read(BIO_METHOD *biom,
29
static int BIO_meth_set_read(BIO_METHOD *biom,
(-)spice-gtk-0.35/src/spice-channel.c (-1 / +1 lines)
Lines 55-61 static void spice_channel_reset_capabili Link Here
55
static void spice_channel_send_migration_handshake(SpiceChannel *channel);
55
static void spice_channel_send_migration_handshake(SpiceChannel *channel);
56
static gboolean channel_connect(SpiceChannel *channel, gboolean tls);
56
static gboolean channel_connect(SpiceChannel *channel, gboolean tls);
57
57
58
#if OPENSSL_VERSION_NUMBER < 0x10100000 || defined(LIBRESSL_VERSION_NUMBER)
58
#if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
59
static RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey)
59
static RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey)
60
{
60
{
61
    if (pkey->type != EVP_PKEY_RSA) {
61
    if (pkey->type != EVP_PKEY_RSA) {

Return to bug 664512