diff options
author | Günther Deschner <gd@samba.org> | 2008-04-20 22:56:09 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-20 23:20:21 +0200 |
commit | e03321697efa5d43fdb3de409bc39abb9678ad4d (patch) | |
tree | 5b7aa8962bc0a30e83b26ee204adc855954e9088 /source3 | |
parent | 8caaf0dc4331370793d7f79839ed75bb149c9e93 (diff) | |
download | samba-e03321697efa5d43fdb3de409bc39abb9678ad4d.tar.gz samba-e03321697efa5d43fdb3de409bc39abb9678ad4d.tar.bz2 samba-e03321697efa5d43fdb3de409bc39abb9678ad4d.zip |
cli_cm: Make nicer password prompt in do_connect().
Guenther
(This used to be commit cc967e76a39808e8311cc96c17078a0fce26c11a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clidfs.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/libsmb/clidfs.c b/source3/libsmb/clidfs.c index 0b55d930aa..7b63f9535e 100644 --- a/source3/libsmb/clidfs.c +++ b/source3/libsmb/clidfs.c @@ -202,10 +202,15 @@ static struct cli_state *do_connect(TALLOC_CTX *ctx, } if (!cm_creds.got_pass && !cm_creds.use_kerberos) { - char *pass = getpass("Password: "); + char *label = NULL; + char *pass; + label = talloc_asprintf(ctx, "Enter %s's password: ", + cm_creds.username); + pass = getpass(label); if (pass) { cm_set_password(pass); } + TALLOC_FREE(label); } username = cm_creds.username ? cm_creds.username : ""; |