mirror of
https://github.com/curl/curl.git
synced 2026-07-30 03:08:02 +03:00
krb5_sspi: fix error message on DecryptMessage() fail
Spotted by GitHub Code Quality Closes #22003
This commit is contained in:
parent
ba16b83221
commit
c61f007a73
1 changed files with 1 additions and 1 deletions
|
|
@ -297,7 +297,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
|
|||
SECBUFFER_STREAM. */
|
||||
status = Curl_pSecFn->DecryptMessage(krb5->context, &input_desc, 0, &qop);
|
||||
if(status != SEC_E_OK) {
|
||||
infof(data, "GSSAPI handshake failure (empty security message)");
|
||||
infof(data, "GSSAPI handshake failure (decryption failed)");
|
||||
return CURLE_BAD_CONTENT_ENCODING;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue