Merge pull request #5380 from danielinux/typo-doc

Fixed typo in dox_comments
This commit is contained in:
David Garske
2022-07-21 11:52:56 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ int wolfSSL_CTX_load_verify_locations(WOLFSSL_CTX* ctx, const char* file,
int ret = 0; int ret = 0;
WOLFSSL_CTX* ctx; 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); WOLFSSL_LOAD_FLAG_PEM_CA_ONLY);
if (ret != WOLFSSL_SUCCESS) { if (ret != WOLFSSL_SUCCESS) {
// error loading CA certs // error loading CA certs

View File

@ -1211,7 +1211,7 @@ int wolfSSL_CTX_load_verify_locations(WOLFSSL_CTX* ctx, const char* file,
int ret = 0; int ret = 0;
WOLFSSL_CTX* ctx; 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); WOLFSSL_LOAD_FLAG_PEM_CA_ONLY);
if (ret != WOLFSSL_SUCCESS) { if (ret != WOLFSSL_SUCCESS) {
// error loading CA certs // error loading CA certs