From a18b1939ac9443d17d66d15a1869ba5066531e2e Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 21 Jul 2022 10:19:51 +0200 Subject: [PATCH] Fixed typo in dox_comments --- doc/dox_comments/header_files-ja/ssl.h | 2 +- doc/dox_comments/header_files/ssl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/dox_comments/header_files-ja/ssl.h b/doc/dox_comments/header_files-ja/ssl.h index 431f065a9..1c41d9da8 100644 --- a/doc/dox_comments/header_files-ja/ssl.h +++ b/doc/dox_comments/header_files-ja/ssl.h @@ -702,7 +702,7 @@ int wolfSSL_CTX_load_verify_locations(WOLFSSL_CTX* ctx, const char* file, int ret = 0; WOLFSSL_CTX* ctx; ... - ret = wolfSSL_CTX_load_verify_locations_ex(ctx, NUULL, “./certs/external", + ret = wolfSSL_CTX_load_verify_locations_ex(ctx, NULL, “./certs/external", WOLFSSL_LOAD_FLAG_PEM_CA_ONLY); if (ret != WOLFSSL_SUCCESS) { // error loading CA certs diff --git a/doc/dox_comments/header_files/ssl.h b/doc/dox_comments/header_files/ssl.h index 729626be3..d1cdae79a 100644 --- a/doc/dox_comments/header_files/ssl.h +++ b/doc/dox_comments/header_files/ssl.h @@ -1055,7 +1055,7 @@ int wolfSSL_CTX_load_verify_locations(WOLFSSL_CTX* ctx, const char* file, int ret = 0; WOLFSSL_CTX* ctx; ... - ret = wolfSSL_CTX_load_verify_locations_ex(ctx, NUULL, “./certs/external", + ret = wolfSSL_CTX_load_verify_locations_ex(ctx, NULL, “./certs/external", WOLFSSL_LOAD_FLAG_PEM_CA_ONLY); if (ret != WOLFSSL_SUCCESS) { // error loading CA certs