Skip to content

Commit 063e480

Browse files
committed
fix tabs and spaces
1 parent 3f96d14 commit 063e480

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/internal.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2463,17 +2463,17 @@ int InitSSL_Ctx(WOLFSSL_CTX* ctx, WOLFSSL_METHOD* method, void* heap)
24632463

24642464
/* WOLFSSL_X509_LOOKUP */
24652465
if ((ctx->x509_store.lookup.dirs = (WOLFSSL_BY_DIR*)XMALLOC(
2466-
sizeof(WOLFSSL_BY_DIR),
2467-
heap, DYNAMIC_TYPE_OPENSSL)) == NULL) {
2468-
WOLFSSL_MSG("ctx-x509_store.lookup.dirs: allocation error");
2466+
sizeof(WOLFSSL_BY_DIR),
2467+
heap, DYNAMIC_TYPE_OPENSSL)) == NULL) {
2468+
WOLFSSL_MSG("ctx->x509_store.lookup.dirs: allocation error");
24692469
return MEMORY_E;
24702470
}
24712471
XMEMSET(ctx->x509_store.lookup.dirs, 0, sizeof(WOLFSSL_BY_DIR));
24722472

24732473
/* param */
24742474
if ((ctx->x509_store.param = (WOLFSSL_X509_VERIFY_PARAM*)XMALLOC(
2475-
sizeof(WOLFSSL_X509_VERIFY_PARAM),
2476-
heap, DYNAMIC_TYPE_OPENSSL)) == NULL) {
2475+
sizeof(WOLFSSL_X509_VERIFY_PARAM),
2476+
heap, DYNAMIC_TYPE_OPENSSL)) == NULL) {
24772477
WOLFSSL_MSG("ctx->x509_store.param: allocation error");
24782478
return MEMORY_E;
24792479
}

0 commit comments

Comments
 (0)