]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
schannel: fix typo
authorJoel Depooter <joel.depooter@safe.com>
Thu, 23 Sep 2021 22:41:09 +0000 (15:41 -0700)
committerJay Satiro <raysatiro@yahoo.com>
Fri, 24 Sep 2021 05:33:11 +0000 (01:33 -0400)
Closes https://github.com/curl/curl/pull/7769

lib/vtls/schannel.c

index 722a937c42a2542d62a85694f710d400f2dd5c75..20c478533936ace28441ff0266ff8d0be9cddc4c 100644 (file)
@@ -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;
         }