summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-08-13 22:49:41 +0900
committerDaniel Stenberg <daniel@haxx.se>2021-08-13 17:39:59 +0200
commitf67883e55a27f9ec4825a283c94c008bba644f06 (patch)
tree968d2c85bf4c90744783700e2129d5e088c1be9b
parent116856b9d5c31791e5fd673490c76b11e9d38750 (diff)
downloadcurl-f67883e55a27f9ec4825a283c94c008bba644f06.tar.gz
vtls: fix typo in schannel_verify.c
occurence -> occurrence Closes #7566
-rw-r--r--lib/vtls/schannel_verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/schannel_verify.c b/lib/vtls/schannel_verify.c
index 12fccaa8e..1b283d045 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)