diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 17:48:40 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 17:48:40 +0000 |
commit | b4a8c7e3a59385049ba16671f5839faa4d4eb0fa (patch) | |
tree | ab5de3c6ef20392bcfdf3bd9e9955526a4fcd2a9 | |
parent | 2b4651b3546053c71d5566ab2f8b943a43de2354 (diff) | |
download | fetchmail-b4a8c7e3a59385049ba16671f5839faa4d4eb0fa.tar.gz fetchmail-b4a8c7e3a59385049ba16671f5839faa4d4eb0fa.tar.bz2 fetchmail-b4a8c7e3a59385049ba16671f5839faa4d4eb0fa.zip |
Cosmetic fix.
svn path=/trunk/; revision=1998
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index f495d16b..41c59d25 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1305,8 +1305,7 @@ void dump_params (struct runctl *runp, struct query *querylist, flag implicit) printf(" Recognized listener spam block responses are:", ctl->antispam); - for (idp = ctl->antispam; idp; idp = -idp->next) + for (idp = ctl->antispam; idp; idp = idp->next) printf(" %d", idp->val.status.num); printf("\n"); } |