From 6551780aefb8f0a8b4d41dc5641b136338fbb2d8 Mon Sep 17 00:00:00 2001 From: Niels Provos Date: Mon, 2 Jun 2003 19:37:13 +0000 Subject: [PATCH] bug fix from Ira Lee svn:r71 --- kqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kqueue.c b/kqueue.c index 0bf5e9cc..b0bb9f22 100644 --- a/kqueue.c +++ b/kqueue.c @@ -168,7 +168,7 @@ kq_insert(struct kqop *kqop, struct kevent *kev) log_error("%s: malloc", __func__); return (-1); } - kqop->events = newchange; + kqop->events = newresult; kqop->nevents = nevents; }