diff options
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 89b34e4da0..d31c907d22 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -9395,9 +9395,12 @@ static void usage(void) if(use_kerberos && !gotuser) gotpass = True; while (!gotpass) { - p = getpass("Password:"); - if (p) { - fstrcpy(password, p); + char pwd[256] = {0}; + int rc; + + rc = samba_getpass("Password:", pwd, sizeof(pwd), false, false); + if (rc == 0) { + fstrcpy(password, pwd); gotpass = 1; } } |