vtls: fix typo in schannel_verify.c

occurence -> occurrence

Closes #7566
This commit is contained in:
Ikko Ashimine 2021-08-13 22:49:41 +09:00 committed by Daniel Stenberg
parent 116856b9d5
commit f67883e55a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -80,7 +80,7 @@ static int is_cr_or_lf(char c)
/* Search the substring needle,needlelen into string haystack,haystacklen
* Strings don't need to be terminated by a '\0'.
* Similar of OSX/Linux memmem (not available on Visual Studio).
* Return position of beginning of first occurence or NULL if not found
* Return position of beginning of first occurrence or NULL if not found
*/
static const char *c_memmem(const void *haystack, size_t haystacklen,
const void *needle, size_t needlelen)