summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorMike Pechkin <mpech@cvs.openbsd.org>2001-09-20 17:02:33 +0000
committerMike Pechkin <mpech@cvs.openbsd.org>2001-09-20 17:02:33 +0000
commit1090c37a2abb53f452afc18664a076f51e6f21b6 (patch)
treef584f4c3c851ada9b1836a869092f7a5f03c2514 /sys/kern
parent6f37323ba7b6bb6a6b9ec40c4c94eb3706bb16a7 (diff)
occured->occurred
idea from deraadt@ via NetBSD millert@ ok
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kgdb_stub.c4
-rw-r--r--sys/kern/uipc_syscalls.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kgdb_stub.c b/sys/kern/kgdb_stub.c
index d9e26662a73..663d3e732f1 100644
--- a/sys/kern/kgdb_stub.c
+++ b/sys/kern/kgdb_stub.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kgdb_stub.c,v 1.1 2001/01/24 09:37:59 hugh Exp $ */
+/* $OpenBSD: kgdb_stub.c,v 1.2 2001/09/20 17:02:31 mpech Exp $ */
/* $NetBSD: kgdb_stub.c,v 1.6 1998/08/30 20:30:57 scottr Exp $ */
/*
@@ -378,7 +378,7 @@ kgdb_trap(type, regs)
#endif
kgdb_active = 1;
} else {
- /* Tell remote host that an exception has occured. */
+ /* Tell remote host that an exception has occurred. */
sprintf(buffer, "S%02x", kgdb_signal(type));
kgdb_send(buffer);
}
diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c
index ac20ca7e806..28ef6de78ee 100644
--- a/sys/kern/uipc_syscalls.c
+++ b/sys/kern/uipc_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uipc_syscalls.c,v 1.41 2001/09/17 19:37:59 jason Exp $ */
+/* $OpenBSD: uipc_syscalls.c,v 1.42 2001/09/20 17:02:31 mpech Exp $ */
/* $NetBSD: uipc_syscalls.c,v 1.19 1996/02/09 19:00:48 christos Exp $ */
/*
@@ -223,7 +223,7 @@ sys_accept(p, v, retval)
(caddr_t)SCARG(uap, anamelen),
sizeof (*SCARG(uap, anamelen)));
}
- /* if an error occured, free the file descriptor */
+ /* if an error occurred, free the file descriptor */
if (error) {
fdremove(p->p_fd, tmpfd);
ffree(fp);