aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-25 21:24:28 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-25 21:24:28 +0000
commit72ebc1e4b4652ee0a239c091698bbcff235dab75 (patch)
tree26e289f271d8c16cd8d42f77ee6dbba5d11a1ded
parentf13d100f2c027590fb5b110e5e527aa5ab513797 (diff)
downloadfetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.tar.gz
fetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.tar.bz2
fetchmail-72ebc1e4b4652ee0a239c091698bbcff235dab75.zip
Correct a prompt.
svn path=/trunk/; revision=149
-rw-r--r--fetchmail.c2
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);
}