diff options
author | Sunil Nimmagadda <sunil@cvs.openbsd.org> | 2015-12-22 07:54:58 +0000 |
---|---|---|
committer | Sunil Nimmagadda <sunil@cvs.openbsd.org> | 2015-12-22 07:54:58 +0000 |
commit | ed8e6e183d2ac99487378d4b8addd974ff79a59c (patch) | |
tree | 0cf08a8eccead6f58854e05027fb8269a0fc5437 /usr.sbin/smtpd/ioev.c | |
parent | fa528c5a4853ce4c34548e27c483beb85b3a60c6 (diff) |
Wrap long lines.
Ok gilles@ jung@
Diffstat (limited to 'usr.sbin/smtpd/ioev.c')
-rw-r--r-- | usr.sbin/smtpd/ioev.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/ioev.c b/usr.sbin/smtpd/ioev.c index 1a51009325e..ad337b78273 100644 --- a/usr.sbin/smtpd/ioev.c +++ b/usr.sbin/smtpd/ioev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioev.c,v 1.22 2015/10/16 21:13:33 sthen Exp $ */ +/* $OpenBSD: ioev.c,v 1.23 2015/12/22 07:54:57 sunil Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * @@ -893,7 +893,8 @@ io_reload_ssl(struct io *io) ev = EV_READ; dispatch = io_dispatch_read_ssl; } - else if (IO_WRITING(io) && !(io->flags & IO_PAUSE_OUT) && io_queued(io)) { + else if (IO_WRITING(io) && !(io->flags & IO_PAUSE_OUT) && + io_queued(io)) { ev = EV_WRITE; dispatch = io_dispatch_write_ssl; } |