diff --git a/lib/url.c b/lib/url.c index 2f1d6e5f2f..accaaaa3ad 100644 --- a/lib/url.c +++ b/lib/url.c @@ -651,7 +651,7 @@ bool Curl_conn_seems_dead(struct connectdata *conn, Curl_attach_connection(data, conn); dead = !Curl_conn_is_alive(data, conn, &input_pending); if(input_pending) { - /* For reuse, we want a "clean" connection state. The includes + /* For reuse, we want a "clean" connection state. This includes * that we expect - in general - no waiting input data. Input * waiting might be a TLS Notify Close, for example. We reject * that. diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c index e0a689eecb..53d687046b 100644 --- a/lib/vtls/gtls.c +++ b/lib/vtls/gtls.c @@ -127,7 +127,7 @@ static ssize_t gtls_pull(void *s, void *buf, size_t blen) } result = Curl_conn_cf_recv(cf->next, data, buf, blen, &nread); - CURL_TRC_CF(data, cf, "glts_pull(len=%zu) -> %d, %zu", blen, result, nread); + CURL_TRC_CF(data, cf, "gtls_pull(len=%zu) -> %d, %zu", blen, result, nread); backend->gtls.io_result = result; if(result) { /* !checksrc! disable ERRNOVAR 1 */