1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Use possessive in message asking for user's password.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent d7cf64b1e4
commit cc9765ce97

View File

@ -147,7 +147,7 @@ static ADS_STRUCT *ads_startup(void)
retry:
if (!opt_password && need_password && !opt_machine_pass) {
char *prompt;
asprintf(&prompt,"%s password: ", opt_user_name);
asprintf(&prompt,"%s's password: ", opt_user_name);
opt_password = getpass(prompt);
free(prompt);
}