summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-11-29 20:15:43 +0000
committerderaadt <deraadt@openbsd.org>2002-11-29 20:15:43 +0000
commit386a7077f0008350c6be2a37a681f43f170e5ab7 (patch)
treea2a2653a716b19edf5c5e55620bb4969912c6915
parentriduculous spelling; torh@bogus.net (diff)
downloadwireguard-openbsd-386a7077f0008350c6be2a37a681f43f170e5ab7.tar.xz
wireguard-openbsd-386a7077f0008350c6be2a37a681f43f170e5ab7.zip
inconsistant spelling; torh@bogus.net
-rw-r--r--bin/pax/pat_rep.c6
-rw-r--r--lib/libkvm/kvm_file.c6
-rw-r--r--sys/arch/hp300/dev/ac.c4
-rw-r--r--sys/arch/vax/mscp/mscp_subr.c4
-rw-r--r--usr.bin/indent/indent.c6
5 files changed, 13 insertions, 13 deletions
diff --git a/bin/pax/pat_rep.c b/bin/pax/pat_rep.c
index e32812d73bb..91fa6b7f955 100644
--- a/bin/pax/pat_rep.c
+++ b/bin/pax/pat_rep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pat_rep.c,v 1.22 2002/10/16 19:20:02 millert Exp $ */
+/* $OpenBSD: pat_rep.c,v 1.23 2002/11/29 20:15:43 deraadt Exp $ */
/* $NetBSD: pat_rep.c,v 1.4 1995/03/21 09:07:33 cgd Exp $ */
/*-
@@ -42,7 +42,7 @@
#if 0
static const char sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94";
#else
-static const char rcsid[] = "$OpenBSD: pat_rep.c,v 1.22 2002/10/16 19:20:02 millert Exp $";
+static const char rcsid[] = "$OpenBSD: pat_rep.c,v 1.23 2002/11/29 20:15:43 deraadt Exp $";
#endif
#endif /* not lint */
@@ -400,7 +400,7 @@ pat_sel(ARCHD *arcn)
/*
* should never happen....
*/
- paxwarn(1, "Pattern list inconsistant");
+ paxwarn(1, "Pattern list inconsistent");
return(-1);
}
*ppt = pt->fow;
diff --git a/lib/libkvm/kvm_file.c b/lib/libkvm/kvm_file.c
index 24bfb192ad5..01dffd97ee4 100644
--- a/lib/libkvm/kvm_file.c
+++ b/lib/libkvm/kvm_file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kvm_file.c,v 1.6 2001/11/06 19:17:36 art Exp $ */
+/* $OpenBSD: kvm_file.c,v 1.7 2002/11/29 20:15:43 deraadt Exp $ */
/* $NetBSD: kvm_file.c,v 1.5 1996/03/18 22:33:18 thorpej Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)kvm_file.c 8.1 (Berkeley) 6/4/93";
#else
-static char *rcsid = "$OpenBSD: kvm_file.c,v 1.6 2001/11/06 19:17:36 art Exp $";
+static char *rcsid = "$OpenBSD: kvm_file.c,v 1.7 2002/11/29 20:15:43 deraadt Exp $";
#endif
#endif /* LIBC_SCCS and not lint */
@@ -116,7 +116,7 @@ kvm_deadfiles(kd, op, arg, filehead_o, nfiles)
}
}
if (n != nfiles) {
- _kvm_err(kd, kd->program, "inconsistant nfiles");
+ _kvm_err(kd, kd->program, "inconsistent nfiles");
return (0);
}
return (nfiles);
diff --git a/sys/arch/hp300/dev/ac.c b/sys/arch/hp300/dev/ac.c
index 48bf4481cef..dc5ccbd89fa 100644
--- a/sys/arch/hp300/dev/ac.c
+++ b/sys/arch/hp300/dev/ac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ac.c,v 1.10 2002/05/30 11:03:52 art Exp $ */
+/* $OpenBSD: ac.c,v 1.11 2002/11/29 20:15:43 deraadt Exp $ */
/* $NetBSD: ac.c,v 1.9 1997/04/02 22:37:21 scottr Exp $ */
/*
@@ -506,7 +506,7 @@ acconvert(sbuf, dbuf, ne)
}
#ifdef DEBUG
if (ne < 0 || bcount < 0)
- panic("acconvert: inconsistant");
+ panic("acconvert: inconsistent");
#endif
}
}
diff --git a/sys/arch/vax/mscp/mscp_subr.c b/sys/arch/vax/mscp/mscp_subr.c
index 00c4a798cdd..a7e8e85b66b 100644
--- a/sys/arch/vax/mscp/mscp_subr.c
+++ b/sys/arch/vax/mscp/mscp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mscp_subr.c,v 1.5 2002/03/14 01:26:48 millert Exp $ */
+/* $OpenBSD: mscp_subr.c,v 1.6 2002/11/29 20:15:43 deraadt Exp $ */
/* $NetBSD: mscp_subr.c,v 1.18 2001/11/13 07:38:28 lukem Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
@@ -719,7 +719,7 @@ static char *cntlr_msgs[] = {
unknown_msg,
"serdes overrun", /* 1 = Serialiser/Deserialiser Overrun */
"edc", /* 2 = Error Detection Code? */
- "inconsistant internal data struct",/* 3 = Internal Error */
+ "inconsistent internal data struct",/* 3 = Internal Error */
};
/*
diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c
index ea327ba27a6..28b9b9f13bf 100644
--- a/usr.bin/indent/indent.c
+++ b/usr.bin/indent/indent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: indent.c,v 1.12 2002/03/16 00:18:19 vincent Exp $ */
+/* $OpenBSD: indent.c,v 1.13 2002/11/29 20:15:43 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -47,7 +47,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93";*/
-static char rcsid[] = "$OpenBSD: indent.c,v 1.12 2002/03/16 00:18:19 vincent Exp $";
+static char rcsid[] = "$OpenBSD: indent.c,v 1.13 2002/11/29 20:15:43 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -1112,7 +1112,7 @@ check_type:
*/
if (match_state[ifdef_level].tos >= 0
&& bcmp(&ps, &match_state[ifdef_level], sizeof ps))
- diag(0, "Syntactically inconsistant #ifdef alternatives.");
+ diag(0, "Syntactically inconsistent #ifdef alternatives.");
#endif
}
if (blanklines_around_conditional_compilation) {