diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-11 15:02:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-11 15:02:21 +0000 |
commit | 96632889103101100b862089b251450d729b51bc (patch) | |
tree | 17b14ee185faca6398ea7e5cdf4399c095c7d239 /fetchmail.c | |
parent | c3bebbaefbf978f496a2fb9662bbd132791ae2d6 (diff) | |
download | fetchmail-96632889103101100b862089b251450d729b51bc.tar.gz fetchmail-96632889103101100b862089b251450d729b51bc.tar.bz2 fetchmail-96632889103101100b862089b251450d729b51bc.zip |
Better option dumping.
svn path=/trunk/; revision=531
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 763bfa5a..78defa07 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -728,7 +728,9 @@ void dump_params (struct query *ctl) for (idp = ctl->localnames; idp; idp = idp->next) ++count; - printf(" %d local name(s) recognized.\n", count); + printf(" %d local name(s) recognized%s.\n", + count, + (count == 1 && !strcmp(idp->id, user)) ? " (by default)" : ""); if (outlevel == O_VERBOSE) for (idp = ctl->localnames; idp; idp = idp->next) if (idp->val.id2) |