diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-11 19:15:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-11 19:15:57 +0000 |
commit | 018966f5146a6502c61e67ee47315740729412ff (patch) | |
tree | 64e5587bdafa9e5f12e6f56c2b7b79d2d808e931 /fetchmail.c | |
parent | 5d9c55fde622974c4285a5e80b5afe438bd0e16a (diff) | |
download | fetchmail-018966f5146a6502c61e67ee47315740729412ff.tar.gz fetchmail-018966f5146a6502c61e67ee47315740729412ff.tar.bz2 fetchmail-018966f5146a6502c61e67ee47315740729412ff.zip |
Fix Jesse Thilo's bug.
svn path=/trunk/; revision=533
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 78defa07..e16ff2b7 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -730,7 +730,7 @@ void dump_params (struct query *ctl) printf(" %d local name(s) recognized%s.\n", count, - (count == 1 && !strcmp(idp->id, user)) ? " (by default)" : ""); + (count == 1 && !strcmp(ctl->localnames->id, user)) ? " (by default)" : ""); if (outlevel == O_VERBOSE) for (idp = ctl->localnames; idp; idp = idp->next) if (idp->val.id2) |