summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-05-06 18:22:54 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-05-06 18:22:54 +0000
commitcfcf97a9f4572b69188ea50167b773954047d30c (patch)
treecf85dd6fca086767b364b279f4b6c61587a209c8 /lib
parentc7340224a5652a1e4839fbd66d73be3a94c9eb37 (diff)
fix comment, kqueue -> {poll,select}
Diffstat (limited to 'lib')
-rw-r--r--lib/libevent/poll.c4
-rw-r--r--lib/libevent/select.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libevent/poll.c b/lib/libevent/poll.c
index 64cedaef71c..35d5d4525dd 100644
--- a/lib/libevent/poll.c
+++ b/lib/libevent/poll.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: poll.c,v 1.7 2005/05/04 03:17:48 brad Exp $ */
+/* $OpenBSD: poll.c,v 1.8 2005/05/06 18:22:53 brad Exp $ */
/*
* Copyright 2000-2003 Niels Provos <provos@citi.umich.edu>
@@ -85,7 +85,7 @@ poll_init(void)
{
struct pollop *pollop;
- /* Disable kqueue when this environment variable is set */
+ /* Disable poll when this environment variable is set */
if (!issetugid() && getenv("EVENT_NOPOLL"))
return (NULL);
diff --git a/lib/libevent/select.c b/lib/libevent/select.c
index 59e4f9a3393..d334b902ae6 100644
--- a/lib/libevent/select.c
+++ b/lib/libevent/select.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: select.c,v 1.9 2005/04/22 00:56:25 brad Exp $ */
+/* $OpenBSD: select.c,v 1.10 2005/05/06 18:22:53 brad Exp $ */
/*
* Copyright 2000-2002 Niels Provos <provos@citi.umich.edu>
@@ -84,7 +84,7 @@ select_init(void)
{
struct selectop *sop;
- /* Disable kqueue when this environment variable is set */
+ /* Disable select when this environment variable is set */
if (!issetugid() && getenv("EVENT_NOSELECT"))
return (NULL);