From 30f9e6e411202ea2db88f4dc30cdcd9d733ff2d3 Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 2 Dec 2013 18:20:39 +0000 Subject: - src/s_bsd_kqueue.c: removed redundant init_netio() prototype; fixed indentation git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2615 82007160-df01-0410-b94d-b575c5fd34c7 --- src/s_bsd_kqueue.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/s_bsd_kqueue.c b/src/s_bsd_kqueue.c index 5f8d89c..94e1777 100644 --- a/src/s_bsd_kqueue.c +++ b/src/s_bsd_kqueue.c @@ -50,7 +50,6 @@ static fde_t kqfd; static struct kevent kq_fdlist[KE_LENGTH]; /* kevent buffer */ static int kqoff; /* offset into the buffer */ -void init_netio(void); /* * init_netio @@ -183,8 +182,8 @@ comm_select(void) { F->read_handler = NULL; hdl(F, F->read_data); - if (!F->flags.open) - continue; + if (!F->flags.open) + continue; } if (ke[i].filter == EVFILT_WRITE) @@ -192,8 +191,8 @@ comm_select(void) { F->write_handler = NULL; hdl(F, F->write_data); - if (!F->flags.open) - continue; + if (!F->flags.open) + continue; } comm_setselect(F, 0, NULL, NULL, 0); -- cgit