diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libevent/poll.c | 4 | ||||
-rw-r--r-- | lib/libevent/select.c | 4 |
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); |