mirror of
https://github.com/curl/curl.git
synced 2026-07-16 11:27:14 +03:00
ntlm: (void) typecast msnprintf() where we ignore return code
Follow-up to 5a41abef6, to please Coverity
This commit is contained in:
parent
5a41abef6d
commit
216636a4ce
1 changed files with 1 additions and 1 deletions
|
|
@ -536,7 +536,7 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
|
|||
hostlen = strlen(host);
|
||||
}
|
||||
#else
|
||||
msnprintf(host, sizeof(host), "%s", NTLM_HOSTNAME);
|
||||
(void)msnprintf(host, sizeof(host), "%s", NTLM_HOSTNAME);
|
||||
hostlen = sizeof(NTLM_HOSTNAME)-1;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue