diff options
author | 1999-05-20 12:56:40 +0000 | |
---|---|---|
committer | 1999-05-20 12:56:40 +0000 | |
commit | 051eff8d962748d398e22ddc5d7c5382c89484f4 (patch) | |
tree | aad30371ed6e16cf9b15cf2d9a7e0afc5cb1a149 | |
parent | Fix a bug where the ordered expiration list could get out of order. Add (diff) | |
download | wireguard-openbsd-051eff8d962748d398e22ddc5d7c5382c89484f4.tar.xz wireguard-openbsd-051eff8d962748d398e22ddc5d7c5382c89484f4.zip |
fix some typos; kwesterback@home.com
-rw-r--r-- | sys/arch/i386/stand/libsa/diskprobe.c | 6 | ||||
-rw-r--r-- | sys/stand/boot/bootarg.c | 4 | ||||
-rw-r--r-- | sys/sys/systm.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/i386/stand/libsa/diskprobe.c b/sys/arch/i386/stand/libsa/diskprobe.c index 0aac07f7be4..1daad010c57 100644 --- a/sys/arch/i386/stand/libsa/diskprobe.c +++ b/sys/arch/i386/stand/libsa/diskprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diskprobe.c,v 1.15 1998/04/18 07:39:50 deraadt Exp $ */ +/* $OpenBSD: diskprobe.c,v 1.16 1999/05/20 12:56:40 aaron Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -95,7 +95,7 @@ floppyprobe() } -/* Probe for all BIOS floppies */ +/* Probe for all BIOS hard disks */ static void hardprobe() { @@ -238,7 +238,7 @@ dump_diskinfo() } } -/* Find BIOS protion on given BIOS disk +/* Find BIOS portion on given BIOS disk * XXX - Use dklookup() instead. */ bios_diskinfo_t * diff --git a/sys/stand/boot/bootarg.c b/sys/stand/boot/bootarg.c index 72f803a8804..1e102c17bf8 100644 --- a/sys/stand/boot/bootarg.c +++ b/sys/stand/boot/bootarg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootarg.c,v 1.5 1998/05/25 19:17:38 mickey Exp $ */ +/* $OpenBSD: bootarg.c,v 1.6 1999/05/20 12:56:40 aaron Exp $ */ /* * Copyright (c) 1997,1998 Michael Shalayeff @@ -67,7 +67,7 @@ makebootargs(v, lenp) l += p->ba_size; if (*lenp < l) { #ifdef DEBUG - printf("makebootargs: too much args\n"); + printf("makebootargs: too many args\n"); #endif l = *lenp; } diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 1578e855a31..bcf9f0aa4f0 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systm.h,v 1.29 1999/05/06 15:33:57 mickey Exp $ */ +/* $OpenBSD: systm.h,v 1.30 1999/05/20 12:56:40 aaron Exp $ */ /* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */ /*- @@ -51,7 +51,7 @@ * It can only be decreased by process 1 (/sbin/init). * * Security levels are as follows: - * -1 permannently insecure mode - always run system in level 0 mode. + * -1 permanently insecure mode - always run system in level 0 mode. * 0 insecure mode - immutable and append-only flags make be turned off. * All devices may be read or written subject to permission modes. * 1 secure mode - immutable and append-only flags may not be changed; |