Ver a proveniência

Fix the name of OPENSSL_add_all_algorithms_conf.

I named the compatibility function wrong.

Change-Id: Idc289c317c5826c338c1daf58a2d3b26b09a7e49
Reviewed-on: https://boringssl-review.googlesource.com/8301
Reviewed-by: Adam Langley <agl@google.com>
kris/onging/CECPQ3_patch15
David Benjamin há 8 anos
committed by Adam Langley
ascendente
cometimento
65dac9c8a3
2 ficheiros alterados com 3 adições e 3 eliminações
  1. +1
    -1
      crypto/evp/evp.c
  2. +2
    -2
      include/openssl/evp.h

+ 1
- 1
crypto/evp/evp.c Ver ficheiro

@@ -356,7 +356,7 @@ int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD **out_md) {

void OpenSSL_add_all_algorithms(void) {}

void OpenSSL_add_all_algorithms_conf(void) {}
void OPENSSL_add_all_algorithms_conf(void) {}

void OpenSSL_add_all_ciphers(void) {}



+ 2
- 2
include/openssl/evp.h Ver ficheiro

@@ -654,8 +654,8 @@ OPENSSL_EXPORT int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx,
/* OpenSSL_add_all_algorithms does nothing. */
OPENSSL_EXPORT void OpenSSL_add_all_algorithms(void);

/* OpenSSL_add_all_algorithms_conf does nothing. */
OPENSSL_EXPORT void OpenSSL_add_all_algorithms_conf(void);
/* OPENSSL_add_all_algorithms_conf does nothing. */
OPENSSL_EXPORT void OPENSSL_add_all_algorithms_conf(void);

/* OpenSSL_add_all_ciphers does nothing. */
OPENSSL_EXPORT void OpenSSL_add_all_ciphers(void);


Carregando…
Cancelar
Guardar