diff options
author | Joel Depooter <joel.depooter@safe.com> | 2021-09-23 15:41:09 -0700 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2021-09-24 01:33:11 -0400 |
commit | bb72392647404dce931b73adaf81edb4670e34b2 (patch) | |
tree | 49586fbe55e617d080fff0b953175ec9aa4a5c38 /lib | |
parent | 3455d29d7b29dd6c2183b513169eb64df51bd622 (diff) | |
download | curl-bb72392647404dce931b73adaf81edb4670e34b2.tar.gz |
schannel: fix typo
Closes https://github.com/curl/curl/pull/7769
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/schannel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 722a937c4..20c478533 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; } |