From: Joel Depooter Date: Thu, 23 Sep 2021 22:41:09 +0000 (-0700) Subject: schannel: fix typo X-Git-Tag: curl-7_80_0~191 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb72392647404dce931b73adaf81edb4670e34b2;p=thirdparty%2Fcurl.git schannel: fix typo Closes https://github.com/curl/curl/pull/7769 --- diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 722a937c42..20c4785339 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -1970,12 +1970,12 @@ schannel_recv(struct Curl_easy *data, int sockindex, if(sspi_status == SEC_I_RENEGOTIATE) { infof(data, "schannel: remote party requests renegotiation"); if(*err && *err != CURLE_AGAIN) { - infof(data, "schannel: can't renogotiate, an error is pending"); + infof(data, "schannel: can't renegotiate, an error is pending"); goto cleanup; } if(BACKEND->encdata_offset) { *err = CURLE_RECV_ERROR; - infof(data, "schannel: can't renogotiate, " + infof(data, "schannel: can't renegotiate, " "encrypted data available"); goto cleanup; }