cli_cm: Make nicer password prompt in do_connect().
authorGünther Deschner <gd@samba.org>
Sun, 20 Apr 2008 20:56:09 +0000 (22:56 +0200)
committerGünther Deschner <gd@samba.org>
Sun, 20 Apr 2008 21:20:21 +0000 (23:20 +0200)
Guenther
(This used to be commit cc967e76a39808e8311cc96c17078a0fce26c11a)

source3/libsmb/clidfs.c

index 0b55d930aaa50479cb97a7cbcf9e93760dd9a856..7b63f9535e935d6ba40093153a16f5284d08765c 100644 (file)
@@ -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 : "";