diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 10:37:49 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 10:37:49 +0000 |
commit | 66372d65c33bf1cba024f38cc96d6452935626b8 (patch) | |
tree | bdc9bd4fdc652bf05b94452ef12b5aa38691e022 /sink.c | |
parent | 147645e1a71350d168dd3c4df0f11b140373b09f (diff) | |
download | fetchmail-66372d65c33bf1cba024f38cc96d6452935626b8.tar.gz fetchmail-66372d65c33bf1cba024f38cc96d6452935626b8.tar.bz2 fetchmail-66372d65c33bf1cba024f38cc96d6452935626b8.zip |
Fix compiler warning (unused parameter).
svn path=/branches/BRANCH_6-3/; revision=5333
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -580,6 +580,8 @@ static int handle_smtp_report_without_bounce(struct query *ctl, struct msgblk *m { int smtperr = atoi(smtp_response); + (void)msg; + if (str_find(&ctl->antispam, smtperr)) { if (run.spambounce) |