Skip to content

Commit 7e29199

Browse files
authored
Merge pull request wolfSSL#8150 from douzzer/20241104-fixes
20241104-fixes
2 parents 8ecf064 + 0f31f5b commit 7e29199

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
# The exclude_file contains lines of code that should be ignored. This is useful for individual lines which have non-words that can safely be ignored.
2828
exclude_file: '.codespellexcludelines'
2929
# To skip files entirely from being processed, add it to the following list:
30-
skip: '*.cproject,*.der,*.mtpj,*.pem,*.vcxproj,.git,*.launch,*.scfg,./IDE/Renesas/cs+/Projects/t4_demo/README_jp.txt'
30+
skip: '*.cproject,*.der,*.mtpj,*.pem,*.vcxproj,.git,*.launch,*.scfg,*/README_jp.txt'

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7388,7 +7388,7 @@ then
73887388
ENABLED_WOLFSSH="yes"
73897389
fi
73907390
7391-
if test "x$ENABLED_OPENSSLEXTRA" = "xno" && test "x$ENABLED_OPENSSLCOEXIST" = "xno"
7391+
if test "x$ENABLED_OPENSSLEXTRA" = "xno"
73927392
then
73937393
ENABLED_OPENSSLEXTRA="yes"
73947394
fi

tests/api.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71021,10 +71021,10 @@ static int test_wolfSSL_SESSION(void)
7102171021
char buf[64] = {0};
7102271022
word32 bufSz = (word32)sizeof(buf);
7102371023

71024-
ExpectIntEQ(SSL_SUCCESS,
71024+
ExpectIntEQ(WOLFSSL_SUCCESS,
7102571025
wolfSSL_set_SessionTicket(ssl, (byte *)ticket,
7102671026
(word32)XSTRLEN(ticket)));
71027-
ExpectIntEQ(SSL_SUCCESS,
71027+
ExpectIntEQ(WOLFSSL_SUCCESS,
7102871028
wolfSSL_get_SessionTicket(ssl, (byte *)buf, &bufSz));
7102971029
ExpectStrEQ(ticket, buf);
7103071030
}

wolfcrypt/src/ASN_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static const ASNItem <template>[] = {
1818
/* <ITEM_0> */ { <depth>, <ASN Type>, <constructed>, <header>, <optional> },
1919
...
2020
};
21-
/* Named indeces for <template>. */
21+
/* Named indices for <template>. */
2222
enum {
2323
<TEMPLATE>_<ITEM_0> = 0,
2424
<TEMPLATE>_<ITEM_1>,

0 commit comments

Comments
 (0)