diff options
Diffstat (limited to 'libexec/spamd')
-rw-r--r-- | libexec/spamd/spamd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c index fccd640e307..0d2e6abf281 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.129 2015/09/10 10:32:16 beck Exp $ */ +/* $OpenBSD: spamd.c,v 1.130 2015/09/10 13:56:12 beck Exp $ */ /* * Copyright (c) 2015 Henning Brauer <henning@openbsd.org> @@ -1064,7 +1064,7 @@ void handler(struct con *cp) { int end = 0; - int n; + ssize_t n; if (cp->r) { if (cp->cctx) { @@ -1104,7 +1104,7 @@ handler(struct con *cp) void handlew(struct con *cp, int one) { - int n; + ssize_t n; /* kill stutter on greylisted connections after initial delay */ if (cp->stutter && greylist && cp->blacklists == NULL && |