summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-02-20 15:18:38 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-02-21 08:38:00 +0100
commit0c76795cafe0fccab41b3adc1be08cb81d55024f (patch)
treeec686629077ff076cc3c543f3518bdaf7ad4e50b
parent150f45e8d1cce189a5b0b963243a8563d3d14b8e (diff)
downloadcurl-0c76795cafe0fccab41b3adc1be08cb81d55024f.tar.gz
cleanup: comment typos
Spotted by 'codespell' Closes #4957
-rw-r--r--lib/cookie.c2
-rw-r--r--lib/setopt.c2
-rw-r--r--lib/vssh/libssh.c3
-rw-r--r--lib/vssh/libssh2.c1
-rw-r--r--src/tool_cb_hdr.c4
5 files changed, 5 insertions, 7 deletions
diff --git a/lib/cookie.c b/lib/cookie.c
index 2dfdc733f..cf18745bc 100644
--- a/lib/cookie.c
+++ b/lib/cookie.c
@@ -1048,7 +1048,7 @@ Curl_cookie_add(struct Curl_easy *data,
*clist = *co; /* then store all the new data */
- free(co); /* free the newly alloced memory */
+ free(co); /* free the newly allocated memory */
co = clist; /* point to the previous struct instead */
/* We have replaced a cookie, now skip the rest of the list but
diff --git a/lib/setopt.c b/lib/setopt.c
index 5a8ccac28..2e494a6df 100644
--- a/lib/setopt.c
+++ b/lib/setopt.c
@@ -2288,7 +2288,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
case CURLOPT_SSH_KEYFUNCTION:
/* setting to NULL is fine since the ssh.c functions themselves will
- then rever to use the internal default */
+ then revert to use the internal default */
data->set.ssh_keyfunc = va_arg(param, curl_sshkeycallback);
break;
diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c
index 62a7f1960..f66db318d 100644
--- a/lib/vssh/libssh.c
+++ b/lib/vssh/libssh.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2017 - 2019 Red Hat, Inc.
+ * Copyright (C) 2017 - 2020 Red Hat, Inc.
*
* Authors: Nikos Mavrogiannopoulos, Tomas Mraz, Stanislav Zidek,
* Robert Kolcun, Andreas Schneider
@@ -1586,7 +1586,6 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block)
return CURLE_BAD_DOWNLOAD_RESUME;
}
}
- /* Does a completed file need to be seeked and started or closed ? */
/* Now store the number of bytes we are expected to download */
data->req.size = size - data->state.resume_from;
data->req.maxdownload = size - data->state.resume_from;
diff --git a/lib/vssh/libssh2.c b/lib/vssh/libssh2.c
index 92cb65132..8e043747e 100644
--- a/lib/vssh/libssh2.c
+++ b/lib/vssh/libssh2.c
@@ -2381,7 +2381,6 @@ static CURLcode ssh_statemach_act(struct connectdata *conn, bool *block)
return CURLE_BAD_DOWNLOAD_RESUME;
}
}
- /* Does a completed file need to be seeked and started or closed ? */
/* Now store the number of bytes we are expected to download */
data->req.size = attrs.filesize - data->state.resume_from;
data->req.maxdownload = attrs.filesize - data->state.resume_from;
diff --git a/src/tool_cb_hdr.c b/src/tool_cb_hdr.c
index 30d7c99ae..3b1023888 100644
--- a/src/tool_cb_hdr.c
+++ b/src/tool_cb_hdr.c
@@ -109,7 +109,7 @@ size_t tool_header_cb(char *ptr, size_t size, size_t nmemb, void *userdata)
size_t etag_length = 0;
etag_h = ptr;
- /* point to first occurence of double quote */
+ /* point to first occurrence of double quote */
first = memchr(etag_h, '\"', cb);
/*
@@ -127,7 +127,7 @@ size_t tool_header_cb(char *ptr, size_t size, size_t nmemb, void *userdata)
first++;
}
- /* point to last occurence of double quote */
+ /* point to last occurrence of double quote */
last = memchr(first, '\"', cb);
if(!last) {