diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-02 18:20:39 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-02 18:20:39 +0000 |
commit | 30f9e6e411202ea2db88f4dc30cdcd9d733ff2d3 (patch) | |
tree | 1d710b35ec8fc619f58e7fcb739f65fd2d4b73af | |
parent | e43efb38cdbab2f2d8baa192038d0e18c58b2596 (diff) |
- 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
-rw-r--r-- | src/s_bsd_kqueue.c | 9 |
1 files 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); |