diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 10:37:10 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 10:37:10 +0000 |
commit | 0a748411f89586dd5f2484879e30fc7de271fec7 (patch) | |
tree | 9c2f924f8dfe04d85858801db009c4581277093b | |
parent | 4541301dce16cfec67b24924f71e870f5d37afe6 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |