misc: fix spelling

Closes #10437
This commit is contained in:
John Bampton 2023-02-08 07:50:36 +10:00 committed by Daniel Stenberg
parent 1695fcf57d
commit 0065b146eb
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
10 changed files with 12 additions and 12 deletions

View file

@ -1793,7 +1793,7 @@ static ssize_t cf_h2_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
while(stream->memlen == 0 /* have no data for this stream */
&& !ctx->pause_stream_id /* we are not paused either */
&& ctx->inbuflen == 0) { /* and out inpput buffer is emtpy */
&& ctx->inbuflen == 0) { /* and out input buffer is empty */
/* Receive data from the "lower" filters */
nread = Curl_conn_cf_recv(cf->next, data, ctx->inbuf, H2_BUFSIZE, err);
if(nread < 0) {