spelling fixes; from paul tagliamonte
authorjmc <jmc@openbsd.org>
Tue, 27 Dec 2022 23:05:55 +0000 (23:05 +0000)
committerjmc <jmc@openbsd.org>
Tue, 27 Dec 2022 23:05:55 +0000 (23:05 +0000)
ok nicm

lib/libevent/buffer.c
lib/libevent/event.c
lib/libevent/kqueue.c

index a8ed259..a59a23f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: buffer.c,v 1.32 2019/05/03 16:31:34 tobias Exp $      */
+/*     $OpenBSD: buffer.c,v 1.33 2022/12/27 23:05:55 jmc Exp $ */
 
 /*
  * Copyright (c) 2002, 2003 Niels Provos <provos@citi.umich.edu>
@@ -435,7 +435,7 @@ evbuffer_read(struct evbuffer *buf, int fd, int howmuch)
                 * reading.  We do not want to exhaust resources
                 * before the reader has a chance to do something
                 * about it.  If the reader does not tell us how much
-                * data we should read, we artifically limit it.
+                * data we should read, we artificially limit it.
                 */
                if ((size_t)n > buf->totallen << 2)
                        n = buf->totallen << 2;
index 078ae04..26bc37d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: event.c,v 1.41 2019/05/01 19:14:25 jca Exp $  */
+/*     $OpenBSD: event.c,v 1.42 2022/12/27 23:05:55 jmc Exp $  */
 
 /*
  * Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu>
@@ -338,7 +338,7 @@ event_process_active(struct event_base *base)
 }
 
 /*
- * Wait continously for events.  We exit only if no events are left.
+ * Wait continuously for events.  We exit only if no events are left.
  */
 
 int
@@ -690,7 +690,7 @@ event_add(struct event *ev, const struct timeval *tv)
        }
 
        /*
-        * we should change the timout state only if the previous event
+        * we should change the timeout state only if the previous event
         * addition succeeded.
         */
        if (res != -1 && tv != NULL) {
@@ -698,7 +698,7 @@ event_add(struct event *ev, const struct timeval *tv)
 
                /*
                 * we already reserved memory above for the case where we
-                * are not replacing an exisiting timeout.
+                * are not replacing an existing timeout.
                 */
                if (ev->ev_flags & EVLIST_TIMEOUT)
                        event_queue_remove(base, ev, EVLIST_TIMEOUT);
index 3f348d7..f61da38 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kqueue.c,v 1.41 2019/05/08 17:33:22 tobias Exp $      */
+/*     $OpenBSD: kqueue.c,v 1.42 2022/12/27 23:05:55 jmc Exp $ */
 
 /*
  * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu>
@@ -91,7 +91,7 @@ kq_init(struct event_base *base)
        if (!(kqueueop = calloc(1, sizeof(struct kqop))))
                return (NULL);
 
-       /* Initalize the kernel queue */
+       /* Initialize the kernel queue */
 
        if ((kq = kqueue()) == -1) {
                event_warn("kqueue");
@@ -103,7 +103,7 @@ kq_init(struct event_base *base)
 
        kqueueop->pid = getpid();
 
-       /* Initalize fields */
+       /* Initialize fields */
        kqueueop->changes = calloc(NEVENT, sizeof(struct kevent));
        if (kqueueop->changes == NULL) {
                free (kqueueop);