diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-04-27 09:50:55 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-04-27 09:50:55 +0200 |
commit | 8b6218e0f1486a39a53783e7c86b42285f89e4cf (patch) | |
tree | 46d0a5aef12c8b13f5de3eb1b32027f463190dd9 /fetchmail.c | |
parent | 2148260d742663448a8fd7ff950d3d8e7468ccd5 (diff) | |
download | fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.gz fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.bz2 fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.zip |
Fix a few Intel C++ remarks and warnings.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fetchmail.c b/fetchmail.c index 6d63c714..93ce7128 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1900,17 +1900,14 @@ static void dump_params (struct runctl *runp, if (ctl->server.akalist) { - struct idlist *idp; - printf(GT_(" Predeclared mailserver aliases:")); for (idp = ctl->server.akalist; idp; idp = idp->next) printf(" %s", idp->id); putchar('\n'); } + if (ctl->server.localdomains) { - struct idlist *idp; - printf(GT_(" Local domains:")); for (idp = ctl->server.localdomains; idp; idp = idp->next) printf(" %s", idp->id); |