diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-27 17:34:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-27 17:34:00 +0000 |
commit | e0ca7a370a20acf2732cbe4cd0e93d1751fb5366 (patch) | |
tree | 21f3f9fafddbb204d2fce5a5d31af2367388aa59 /fetchmail.c | |
parent | 5c09cbae3e433ed47a60ef02f3146926ac915094 (diff) | |
download | fetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.tar.gz fetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.tar.bz2 fetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.zip |
Added the wildcard option.
svn path=/trunk/; revision=575
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 0a464906..a8fe30c2 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -771,11 +771,15 @@ void dump_params (struct query *ctl) count, (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) fprintf(stderr, "\t%s -> %s\n", idp->id, idp->val.id2); else fprintf(stderr, "\t%s\n", idp->id); + if (ctl->wildcard) + fputs("*\n", stderr); + } } if (ctl->protocol > P_POP2) |