diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2016-11-17 07:33:07 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2016-11-17 07:33:07 +0000 |
commit | bcb3d1a1d33aba1147ad94a8419ef430870dc55b (patch) | |
tree | 7119796873d719927abb8e7cda16e5745b4ad75f /usr.sbin/smtpd/ioev.c | |
parent | 65c8bfab4c53597240c123696e80da1ca16e1337 (diff) |
remove IO_TLSVERIFIED which is not a io event, and inline necessary code
where the callback functions are called for this event.
ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/ioev.c')
-rw-r--r-- | usr.sbin/smtpd/ioev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/ioev.c b/usr.sbin/smtpd/ioev.c index 22387d26f04..53308599f40 100644 --- a/usr.sbin/smtpd/ioev.c +++ b/usr.sbin/smtpd/ioev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioev.c,v 1.27 2016/11/16 21:30:37 eric Exp $ */ +/* $OpenBSD: ioev.c,v 1.28 2016/11/17 07:33:06 eric Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * @@ -118,7 +118,6 @@ io_strevent(int evt) switch (evt) { CASE(IO_CONNECTED); CASE(IO_TLSREADY); - CASE(IO_TLSVERIFIED); CASE(IO_DATAIN); CASE(IO_LOWAT); CASE(IO_DISCONNECTED); |