aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-05-25 10:37:10 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-05-25 10:37:10 +0000
commit0a748411f89586dd5f2484879e30fc7de271fec7 (patch)
tree9c2f924f8dfe04d85858801db009c4581277093b
parent4541301dce16cfec67b24924f71e870f5d37afe6 (diff)
downloadfetchmail-0a748411f89586dd5f2484879e30fc7de271fec7.tar.gz
fetchmail-0a748411f89586dd5f2484879e30fc7de271fec7.tar.bz2
fetchmail-0a748411f89586dd5f2484879e30fc7de271fec7.zip
Fix compiler warning. Patch by Prasad J. Pandit, pj.pandit)a(yahoo.co.in.
svn path=/branches/BRANCH_6-3/; revision=5331
-rw-r--r--sink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sink.c b/sink.c
index 09e9e7e3..56801c8d 100644
--- a/sink.c
+++ b/sink.c
@@ -1320,7 +1320,7 @@ int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
int smtp_err;
if (ctl->mda)
{
- int rc,e,e2,err = 0;
+ int rc = 0, e = 0, e2 = 0, err = 0;
/* close the delivery pipe, we'll reopen before next message */
if (sinkfp)