summaryrefslogtreecommitdiffstats
path: root/lib/libevent/kqueue.c
diff options
context:
space:
mode:
authordavid <david@openbsd.org>2003-03-10 04:02:49 +0000
committerdavid <david@openbsd.org>2003-03-10 04:02:49 +0000
commit9534f5ccc4cebf1f1b08de8d33bfbbb77f9dc5c8 (patch)
treed2a2f593eeb28489922a303e48532721a7b82859 /lib/libevent/kqueue.c
parenttypo (diff)
downloadwireguard-openbsd-9534f5ccc4cebf1f1b08de8d33bfbbb77f9dc5c8.tar.xz
wireguard-openbsd-9534f5ccc4cebf1f1b08de8d33bfbbb77f9dc5c8.zip
duplicate words and spelling fixes in comments
ok miod@
Diffstat (limited to 'lib/libevent/kqueue.c')
-rw-r--r--lib/libevent/kqueue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libevent/kqueue.c b/lib/libevent/kqueue.c
index 6889490036e..535837a8fe1 100644
--- a/lib/libevent/kqueue.c
+++ b/lib/libevent/kqueue.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kqueue.c,v 1.6 2002/09/08 07:52:33 itojun Exp $ */
+/* $OpenBSD: kqueue.c,v 1.7 2003/03/10 04:02:50 david Exp $ */
/*
* Copyright 2000-2002 Niels Provos <provos@citi.umich.edu>
@@ -93,7 +93,7 @@ kq_init(void)
memset(&kqop, 0, sizeof(kqop));
- /* Initalize the kernel queue */
+ /* Initialize the kernel queue */
if ((kq = kqueue()) == -1) {
log_error("kqueue");
@@ -102,7 +102,7 @@ kq_init(void)
kqop.kq = kq;
- /* Initalize fields */
+ /* Initialize fields */
kqop.changes = malloc(NEVENT * sizeof(struct kevent));
if (kqop.changes == NULL)
return (NULL);