aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/iobuf.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2015-09-03 07:22:12 +0200
committerGilles Chehade <gilles@poolp.org>2015-09-03 07:22:12 +0200
commita1306e88c14d5a9808247d624de5df0749a4cf23 (patch)
tree7efe4c57a7c2e1d69ea4c627e48e028eddf4c7b7 /smtpd/iobuf.c
parentbump username length to account for virtual users not limited to LOGIN_NAME_MAX (diff)
downloadOpenSMTPD-a1306e88c14d5a9808247d624de5df0749a4cf23.tar.xz
OpenSMTPD-a1306e88c14d5a9808247d624de5df0749a4cf23.zip
fix parenthesis typo in iobuf_flush_ssl(), the function is still unused.
spotted by Jonathan Gray (jsg@)
Diffstat (limited to 'smtpd/iobuf.c')
-rw-r--r--smtpd/iobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtpd/iobuf.c b/smtpd/iobuf.c
index aafe8d2b..78d4f38e 100644
--- a/smtpd/iobuf.c
+++ b/smtpd/iobuf.c
@@ -395,7 +395,7 @@ iobuf_flush_ssl(struct iobuf *io, void *ssl)
ssize_t s;
while (io->queued)
- if ((s = iobuf_write_ssl(io, ssl) < 0))
+ if ((s = iobuf_write_ssl(io, ssl)) < 0)
return (s);
return (0);