From 0d5f5424b4b86c16d51a5793fa93c3bfe3cdb11a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 23 Nov 2012 15:05:51 +0100 Subject: [PATCH] net: Use new samba_getpass() function for 'net rpc'. Reviewed-by: Jelmer Vernooij --- source3/utils/net_rpc.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 60000242e05..57d619e28b2 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -886,13 +886,20 @@ static int rpc_user_password(struct net_context *c, int argc, const char **argv) if (argv[1]) { u1003.usri1003_password = argv[1]; } else { + char pwd[256] = {0}; ret = asprintf(&prompt, _("Enter new password for %s:"), argv[0]); if (ret == -1) { return -1; } - u1003.usri1003_password = talloc_strdup(c, getpass(prompt)); + + ret = samba_getpass(prompt, pwd, sizeof(pwd), false, false); SAFE_FREE(prompt); + if (ret < 0) { + return -1; + } + + u1003.usri1003_password = talloc_strdup(c, pwd); if (u1003.usri1003_password == NULL) { return -1; } -- 2.11.4.GIT