summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2006-02-06 16:47:07 +0000
committerjmc <jmc@openbsd.org>2006-02-06 16:47:07 +0000
commit4df9652199cb4ee50d0bd0b1338ec406b591fd77 (patch)
tree054ce6cccfae36c9307e250c9da59397356599c9
parent- use bitwise flags (diff)
downloadwireguard-openbsd-4df9652199cb4ee50d0bd0b1338ec406b591fd77.tar.xz
wireguard-openbsd-4df9652199cb4ee50d0bd0b1338ec406b591fd77.zip
typos from alexey dobriyan;
-rw-r--r--bin/ksh/CONTRIBUTORS4
-rw-r--r--bin/ksh/jobs.c4
-rw-r--r--distrib/crunch/crunchgen/crunchgen.c4
-rw-r--r--include/link_elf.h4
-rw-r--r--include/rpc/rpc_msg.h4
5 files changed, 10 insertions, 10 deletions
diff --git a/bin/ksh/CONTRIBUTORS b/bin/ksh/CONTRIBUTORS
index c6691a2daa5..d23fc8861ed 100644
--- a/bin/ksh/CONTRIBUTORS
+++ b/bin/ksh/CONTRIBUTORS
@@ -1,4 +1,4 @@
-$OpenBSD: CONTRIBUTORS,v 1.9 1999/07/14 13:37:23 millert Exp $
+$OpenBSD: CONTRIBUTORS,v 1.10 2006/02/06 16:47:07 jmc Exp $
This is a partial history of this shell gleened from old change logs and
readmes (most of which are still in the misc directory) and the source
@@ -72,7 +72,7 @@ Other contributors:
* (guy@netapp.com), Oct '94: patch to use gmacs flag.
* Andrew Moore (alm@netcom.com): reported many bugs, fixes.
* William Bader (wbader@CSEE.Lehigh.Edu): fix to compile on SCO Unix
- (strut winsize).
+ (struct winsize).
* Mike Long (mike.long@analog.com): makefile fix - use $manext, not 1.
* Art Mills (aem@hpbs9162.bio.hp.com): bug fix for vi file completion in
command mode.
diff --git a/bin/ksh/jobs.c b/bin/ksh/jobs.c
index 27e60685118..05d9d2a6ef4 100644
--- a/bin/ksh/jobs.c
+++ b/bin/ksh/jobs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: jobs.c,v 1.34 2005/03/30 17:16:37 deraadt Exp $ */
+/* $OpenBSD: jobs.c,v 1.35 2006/02/06 16:47:07 jmc Exp $ */
/*
* Process and job control
@@ -1480,7 +1480,7 @@ new_job(void)
return newj;
}
-/* Allocate new process strut
+/* Allocate new process struct
*
* If jobs are compiled in then this routine expects sigchld to be blocked.
*/
diff --git a/distrib/crunch/crunchgen/crunchgen.c b/distrib/crunch/crunchgen/crunchgen.c
index 948be3187b6..6cf11b8a058 100644
--- a/distrib/crunch/crunchgen/crunchgen.c
+++ b/distrib/crunch/crunchgen/crunchgen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crunchgen.c,v 1.23 2005/08/03 22:39:54 espie Exp $ */
+/* $OpenBSD: crunchgen.c,v 1.24 2006/02/06 16:49:31 jmc Exp $ */
/*
* Copyright (c) 1994 University of Maryland
@@ -609,7 +609,7 @@ fillin_program(prog_t * p)
p->objdir = p->srcdir;
}
}
- /* We have a sourcedir and no explict objs, try */
+ /* We have a sourcedir and no explicit objs, try */
/* to find makefile and get objs from it. */
if (p->srcdir && !p->objs) {
for (i = 0; mf_name[i] != NULL; i++) {
diff --git a/include/link_elf.h b/include/link_elf.h
index 7a0f11d56cc..fccb76e3ed3 100644
--- a/include/link_elf.h
+++ b/include/link_elf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: link_elf.h,v 1.5 2004/10/14 10:02:28 kettenis Exp $ */
+/* $OpenBSD: link_elf.h,v 1.6 2006/02/06 16:51:50 jmc Exp $ */
/*
* Public domain.
@@ -16,7 +16,7 @@
/*
* struct link_map is a part of the protocol between the debugger and
* ld.so. ld.so may have additional fields in it's version of this
- * stucture but those are ld.so private fields.
+ * structure but those are ld.so private fields.
*/
struct link_map {
caddr_t l_addr; /* Base address of library */
diff --git a/include/rpc/rpc_msg.h b/include/rpc/rpc_msg.h
index 821ae6223f3..ea9777d441f 100644
--- a/include/rpc/rpc_msg.h
+++ b/include/rpc/rpc_msg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rpc_msg.h,v 1.4 2004/01/22 21:48:02 espie Exp $ */
+/* $OpenBSD: rpc_msg.h,v 1.5 2006/02/06 16:51:50 jmc Exp $ */
/* $NetBSD: rpc_msg.h,v 1.5 1995/04/29 05:28:00 cgd Exp $ */
/*
@@ -48,7 +48,7 @@
/*
* Bottom up definition of an rpc message.
- * NOTE: call and reply use the same overall stuct but
+ * NOTE: call and reply use the same overall struct but
* different parts of unions within it.
*/