Skip to content
Snippets Groups Projects
Commit 8162b32b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

silence compiler warnings

parent daf527b2
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,11 @@ kbd_callback(const char *name, int name_len, const char *instruction,
fprintf(stderr, "instruction=%s\n", instruction);
fprintf(stderr, "instruction_len=%d\n", instruction_len);
fprintf(stderr, "num_prompts=%d\n", num_prompts);
#else
(void)name;
(void)name_len;
(void)instruction;
(void)instruction_len;
#endif /* CURL_LIBSSH2_DEBUG */
if (num_prompts == 1) {
responses[0].text = strdup(ssh->passwd);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment