diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 21:24:28 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 21:24:28 +0000 |
commit | 72ebc1e4b4652ee0a239c091698bbcff235dab75 (patch) | |
tree | 26e289f271d8c16cd8d42f77ee6dbba5d11a1ded | |
parent | f13d100f2c027590fb5b110e5e527aa5ab513797 (diff) | |
download | fetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.tar.gz fetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.tar.bz2 fetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.zip |
Correct a prompt.
svn path=/trunk/; revision=149
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 331e5508..22f5481f 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -231,7 +231,7 @@ char **argv; char prompt[BUFSIZ]; (void) sprintf(prompt, "Enter password for %s@%s: ", - hostp->remotename, servername); + hostp->remotename, hostp->servername); (void) strncpy(hostp->password, (char *)getpassword(prompt),PASSWORDLEN-1); } |