diff options
author | Tim Potter <tpot@samba.org> | 2004-03-14 03:47:03 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2004-03-14 03:47:03 +0000 |
commit | 5a521453baefd43c4b16cf8bc1ff530feaf9a4b6 (patch) | |
tree | fa087c928d2f43510d77261f0412e68f462642f7 /source3/utils | |
parent | a0034d3586dadfddc18e4a3096564bf158d43e4e (diff) | |
download | samba-5a521453baefd43c4b16cf8bc1ff530feaf9a4b6.tar.gz samba-5a521453baefd43c4b16cf8bc1ff530feaf9a4b6.tar.bz2 samba-5a521453baefd43c4b16cf8bc1ff530feaf9a4b6.zip |
Use possessive in message asking for user's password.
(This used to be commit cc9765ce97b65bb7a6cd44e847a690d3fbe9d032)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 24ae9a8811..6eec71aedf 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -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); } |