Browse Source

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 8 years ago
committed by Adam Langley
parent
commit
65dac9c8a3
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      crypto/evp/evp.c
  2. +2
    -2
      include/openssl/evp.h

+ 1
- 1
crypto/evp/evp.c View File

@@ -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 View File

@@ -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);


Loading…
Cancel
Save