From: Ikko Ashimine Date: Fri, 13 Aug 2021 13:49:41 +0000 (+0900) Subject: vtls: fix typo in schannel_verify.c X-Git-Tag: curl-7_79_0~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f67883e55a27f9ec4825a283c94c008bba644f06;p=thirdparty%2Fcurl.git vtls: fix typo in schannel_verify.c occurence -> occurrence Closes #7566 --- diff --git a/lib/vtls/schannel_verify.c b/lib/vtls/schannel_verify.c index 12fccaa8ee..1b283d0453 100644 --- a/lib/vtls/schannel_verify.c +++ b/lib/vtls/schannel_verify.c @@ -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)