aboutsummaryrefslogtreecommitdiffstats
path: root/sink.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2006-03-25 14:35:10 +0000
committerMatthias Andree <matthias.andree@gmx.de>2006-03-25 14:35:10 +0000
commit7294aa6146ceb9dd2ebff8b496e351a81a0c8c8c (patch)
treee1b13011abfb19bc201b0bc2ad937608cbc60d27 /sink.c
parent98ca410dab12d43961b72596d9344f8048e30df9 (diff)
downloadfetchmail-7294aa6146ceb9dd2ebff8b496e351a81a0c8c8c.tar.gz
fetchmail-7294aa6146ceb9dd2ebff8b496e351a81a0c8c8c.tar.bz2
fetchmail-7294aa6146ceb9dd2ebff8b496e351a81a0c8c8c.zip
More warning fixes (from FreeBSD 6.1).
svn path=/branches/BRANCH_6-3/; revision=4753
Diffstat (limited to 'sink.c')
-rw-r--r--sink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sink.c b/sink.c
index aaa0beba..c4a26f6b 100644
--- a/sink.c
+++ b/sink.c
@@ -300,7 +300,7 @@ static int send_bouncemail(struct query *ctl, struct msgblk *msg,
/* our first duty is to keep the sacred foo counters turning... */
snprintf(boundary, sizeof(boundary), "foo-mani-padme-hum-%ld-%ld-%ld",
- (long)getpid(), (long)getppid(), time(NULL));
+ (long)getpid(), (long)getppid(), (long)time(NULL));
if (outlevel >= O_VERBOSE)
report(stdout, GT_("SMTP: (bounce-message body)\n"));