mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08:00
krb5: add typecast to please Coverity
This commit is contained in:
parent
ebd83bfbae
commit
4aa64e67e2
@ -261,7 +261,7 @@ krb5_auth(void *app_data, struct Curl_easy *data, struct connectdata *conn)
|
||||
}
|
||||
/* We pass NULL as |output_name_type| to avoid a leak. */
|
||||
gss_display_name(&min, gssname, &output_buffer, NULL);
|
||||
infof(data, "Trying against %s", output_buffer.value);
|
||||
infof(data, "Trying against %s", (char *)output_buffer.value);
|
||||
gssresp = GSS_C_NO_BUFFER;
|
||||
*context = GSS_C_NO_CONTEXT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user