summaryrefslogtreecommitdiff
path: root/lib/vauth
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-05-23 08:13:09 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-05-23 08:13:48 +0200
commit216636a4cef2eb618d3923246e36d491d9e12ad3 (patch)
treefe3838ee29fd166c55ab9f7c4329134ee7190cfc /lib/vauth
parent5a41abef6dca19a3a89a40149f42f11e45e86a3f (diff)
downloadcurl-216636a4cef2eb618d3923246e36d491d9e12ad3.tar.gz
ntlm: (void) typecast msnprintf() where we ignore return code
Follow-up to 5a41abef6, to please Coverity
Diffstat (limited to 'lib/vauth')
-rw-r--r--lib/vauth/ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vauth/ntlm.c b/lib/vauth/ntlm.c
index 16238ac8d..b1b170009 100644
--- a/lib/vauth/ntlm.c
+++ b/lib/vauth/ntlm.c
@@ -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