aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
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)