mirror of
https://github.com/curl/curl.git
synced 2026-06-02 02:44:35 +03:00
fixes
This commit is contained in:
parent
d9d073d0eb
commit
b23dbd4448
1 changed files with 3 additions and 3 deletions
|
|
@ -214,13 +214,13 @@ static int my_progress_d_cb(void *userdata,
|
|||
assert(sspi_status == SEC_E_OK);
|
||||
(void)sspi_status;
|
||||
curl_mfprintf(stderr, "[t-%zu] info Schannel TLS version 0x%08lx\n",
|
||||
t->idx, info.dwProtocol);
|
||||
t->idx, (unsigned long)info.dwProtocol);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
default:
|
||||
curl_mfprintf(stderr, "[t-%zu] info SSL_PTR backend=%u, ptr=%p\n",
|
||||
t->idx, tls->backend, tls->internals);
|
||||
curl_mfprintf(stderr, "[t-%zu] info SSL_PTR backend=%d, ptr=%p\n",
|
||||
t->idx, (int)tls->backend, tls->internals);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue