From 0b06b944fef72cee4f1a608507ec93684b6b980f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 1 Apr 2026 22:41:42 +0200 Subject: [PATCH] spelling: fix typos Closes #21198 --- lib/vquic/curl_quiche.c | 6 +++--- lib/vtls/schannel.c | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/vquic/curl_quiche.c b/lib/vquic/curl_quiche.c index a8697f6ec9..e612f67ad7 100644 --- a/lib/vquic/curl_quiche.c +++ b/lib/vquic/curl_quiche.c @@ -1151,8 +1151,8 @@ out: return result; } -static bool stream_is_writeable(struct Curl_cfilter *cf, - struct Curl_easy *data) +static bool stream_is_writable(struct Curl_cfilter *cf, + struct Curl_easy *data) { struct cf_quiche_ctx *ctx = cf->ctx; struct h3_stream_ctx *stream = H3_STREAM_CTX(ctx, data); @@ -1180,7 +1180,7 @@ static CURLcode cf_quiche_adjust_pollset(struct Curl_cfilter *cf, c_exhaust = FALSE; /* Have not found any call in quiche that tells us if the connection itself is blocked */ s_exhaust = want_send && stream && stream->opened && - (stream->quic_flow_blocked || !stream_is_writeable(cf, data)); + (stream->quic_flow_blocked || !stream_is_writable(cf, data)); want_recv = (want_recv || c_exhaust || s_exhaust); want_send = (!s_exhaust && want_send) || !Curl_bufq_is_empty(&ctx->q.sendbuf); diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index d8af94e59c..a2b76da982 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -1330,12 +1330,12 @@ static CURLcode schannel_connect_step2(struct Curl_cfilter *cf, memcpy(inbuf[0].pvBuffer, backend->encdata.buffer, backend->encdata.offset); - /* The socket must be writeable (or a poll error occurred) before we call + /* The socket must be writable (or a poll error occurred) before we call InitializeSecurityContext to continue processing the received TLS records. This is because that function is not idempotent and we do not support partial save/resume sending replies of handshake tokens. */ if(!SOCKET_WRITABLE(Curl_conn_cf_get_socket(cf, data), 0)) { - SCH_DEV(infof(data, "schannel: handshake waiting for writeable socket")); + SCH_DEV(infof(data, "schannel: handshake waiting for writable socket")); connssl->io_need = CURL_SSL_IO_NEED_SEND; curlx_free(inbuf[0].pvBuffer); return CURLE_OK; @@ -1845,11 +1845,11 @@ static CURLcode schannel_recv_renegotiate( * occur if the user is waiting on the socket only in one direction. * * For example, if the user has called recv then they may not be waiting - * for a writeable socket and vice versa, so we block to avoid that. + * for a writable socket and vice versa, so we block to avoid that. * * In practice a wait is unlikely to occur. For caller recv if handshake - * data needs to be sent then we block for a writeable socket that should - * be writeable immediately except for OS resource constraints. For caller + * data needs to be sent then we block for a writable socket that should + * be writable immediately except for OS resource constraints. For caller * send if handshake data needs to be received then we block for a readable * socket, which could take some time, but it is more likely the user has * called recv since they had called it prior (only recv can start @@ -1905,7 +1905,7 @@ static CURLcode schannel_recv_renegotiate( SCH_DEV(infof(data, "schannel: renegotiation wait until socket is" "%s%s for up to %" FMT_TIMEDIFF_T " ms", ((readfd != CURL_SOCKET_BAD) ? " readable" : ""), - ((writefd != CURL_SOCKET_BAD) ? " writeable" : ""), + ((writefd != CURL_SOCKET_BAD) ? " writable" : ""), timeout_ms)); what = Curl_socket_check(readfd, CURL_SOCKET_BAD, writefd, timeout_ms);