mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-17 11:00:59 -05:00
Remove unused params from cmdline_get_passwd_input.
NFC; I expect this to be a useful simplification for the same reasons as the previous commit.
This commit is contained in:
@ -71,7 +71,7 @@ char *get_ttymode(void *frontend, const char *mode) { return NULL; }
|
||||
int get_userpass_input(prompts_t *p, const unsigned char *in, int inlen)
|
||||
{
|
||||
int ret;
|
||||
ret = cmdline_get_passwd_input(p, in, inlen);
|
||||
ret = cmdline_get_passwd_input(p);
|
||||
if (ret == -1)
|
||||
ret = console_get_userpass_input(p);
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user