diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-19 19:22:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-19 19:22:51 +0000 |
commit | 4780cb2562c1d916c641eca623cf4e865db2aee7 (patch) | |
tree | 48e977b26b62016b786a819f4fa961fca22f5956 | |
parent | da30ebdfaaeab32e3bea537f57382e3dccf7d0c5 (diff) |
more than typo
-rw-r--r-- | sys/arch/sparc/dev/sbus.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/if_txvar.h | 4 | ||||
-rw-r--r-- | sys/netiso/tp_usrreq.c | 4 | ||||
-rw-r--r-- | usr.bin/xlint/lint1/decl.c | 8 | ||||
-rw-r--r-- | usr.bin/xlint/lint2/chk.c | 6 | ||||
-rw-r--r-- | usr.bin/xlint/lint2/main2.c | 6 |
6 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/sparc/dev/sbus.c b/sys/arch/sparc/dev/sbus.c index 5bb1d283a7a..140776501e2 100644 --- a/sys/arch/sparc/dev/sbus.c +++ b/sys/arch/sparc/dev/sbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbus.c,v 1.9 2001/11/06 19:53:16 miod Exp $ */ +/* $OpenBSD: sbus.c,v 1.10 2001/11/19 19:22:43 deraadt Exp $ */ /* $NetBSD: sbus.c,v 1.17 1997/06/01 22:10:39 pk Exp $ */ /* @@ -329,7 +329,7 @@ sbus_testdma(sc, ca) struct romaux *ra = &ca->ca_ra; /* - * XXX how to handle more then one sbus? + * XXX how to handle more than one sbus? */ if (getpropint(0, "slave-only", 0) & (1 << ca->ca_slot)) { diff --git a/sys/dev/pci/if_txvar.h b/sys/dev/pci/if_txvar.h index 747cc2a5cad..040569b54f1 100644 --- a/sys/dev/pci/if_txvar.h +++ b/sys/dev/pci/if_txvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txvar.h,v 1.10 2001/06/23 21:54:54 fgsch Exp $ */ +/* $OpenBSD: if_txvar.h,v 1.11 2001/11/19 19:22:43 deraadt Exp $ */ /* $FreeBSD: src/sys/pci/if_txvar.h,v 1.8 2001/02/07 20:11:02 semenu Exp $ */ /*- @@ -223,7 +223,7 @@ struct epic_rx_desc { /* This structure defines EPIC's fragment list, maximum number of frags */ /* is 63. Let use maximum, becouse size of struct MUST be divisor of */ -/* PAGE_SIZE, and sometimes come mbufs with more then 30 frags */ +/* PAGE_SIZE, and sometimes come mbufs with more than 30 frags */ #define EPIC_MAX_FRAGS 63 struct epic_frag_list { volatile u_int32_t numfrags; diff --git a/sys/netiso/tp_usrreq.c b/sys/netiso/tp_usrreq.c index 8b3e4caf987..30fb2335393 100644 --- a/sys/netiso/tp_usrreq.c +++ b/sys/netiso/tp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tp_usrreq.c,v 1.4 2001/05/16 12:54:07 ho Exp $ */ +/* $OpenBSD: tp_usrreq.c,v 1.5 2001/11/19 19:22:43 deraadt Exp $ */ /* $NetBSD: tp_usrreq.c,v 1.9 1996/03/16 23:14:06 christos Exp $ */ /*- @@ -270,7 +270,7 @@ restart: * tp_usrreq(), PRU_SENDOOB * FUNCTION and ARGUMENTS: * Send what's in the mbuf chain (m) as an XPD TPDU. - * The mbuf may not contain more then 16 bytes of data. + * The mbuf may not contain more than 16 bytes of data. * XPD TSDUs aren't segmented, so they translate into * exactly one XPD TPDU, with EOT bit set. * RETURN VALUE: diff --git a/usr.bin/xlint/lint1/decl.c b/usr.bin/xlint/lint1/decl.c index f2a54cb3c59..6ea28efb294 100644 --- a/usr.bin/xlint/lint1/decl.c +++ b/usr.bin/xlint/lint1/decl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: decl.c,v 1.5 2001/09/19 10:58:07 mpech Exp $ */ +/* $OpenBSD: decl.c,v 1.6 2001/11/19 19:22:43 deraadt Exp $ */ /* $NetBSD: decl.c,v 1.11 1995/10/02 17:34:16 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: decl.c,v 1.5 2001/09/19 10:58:07 mpech Exp $"; +static char rcsid[] = "$OpenBSD: decl.c,v 1.6 2001/11/19 19:22:43 deraadt Exp $"; #endif #include <sys/param.h> @@ -395,7 +395,7 @@ addtype(tp) /* remeber specifiers "signed" and "unsigned" in dcs->d_smod */ if (dcs->d_smod != NOTSPEC) /* - * more then one "signed" and/or "unsigned"; print + * more than one "signed" and/or "unsigned"; print * an error in deftyp() */ dcs->d_terr = 1; @@ -493,7 +493,7 @@ tdeferr(td, t) * or enum tag if the typedef name is the first defined for this tag. * * If the tag is unnamed, the typdef name is used for identification - * of this tag in lint2. Although its possible that more then one typedef + * of this tag in lint2. Although its possible that more than one typedef * name is defined for one tag, the first name defined should be unique * if the tag is unnamed. */ diff --git a/usr.bin/xlint/lint2/chk.c b/usr.bin/xlint/lint2/chk.c index 9fa6acaee5f..8313f6974ed 100644 --- a/usr.bin/xlint/lint2/chk.c +++ b/usr.bin/xlint/lint2/chk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chk.c,v 1.5 1998/07/29 03:14:51 millert Exp $ */ +/* $OpenBSD: chk.c,v 1.6 2001/11/19 19:22:43 deraadt Exp $ */ /* $NetBSD: chk.c,v 1.2 1995/07/03 21:24:42 cgd Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: chk.c,v 1.5 1998/07/29 03:14:51 millert Exp $"; +static char rcsid[] = "$OpenBSD: chk.c,v 1.6 2001/11/19 19:22:43 deraadt Exp $"; #endif #include <stdlib.h> @@ -282,7 +282,7 @@ chkdnud(hte) } /* - * Print a warning if there is more then one definition for + * Print a warning if there is more than one definition for * this name. */ static void diff --git a/usr.bin/xlint/lint2/main2.c b/usr.bin/xlint/lint2/main2.c index 2d672b03d4b..e3ca9e24fa5 100644 --- a/usr.bin/xlint/lint2/main2.c +++ b/usr.bin/xlint/lint2/main2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main2.c,v 1.2 1996/06/26 05:44:24 deraadt Exp $ */ +/* $OpenBSD: main2.c,v 1.3 2001/11/19 19:22:50 deraadt Exp $ */ /* $NetBSD: main2.c,v 1.2 1995/07/03 21:24:53 cgd Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: main2.c,v 1.2 1996/06/26 05:44:24 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: main2.c,v 1.3 2001/11/19 19:22:50 deraadt Exp $"; #endif #include <stdio.h> @@ -59,7 +59,7 @@ const char *libname; int pflag; /* - * warnings for (tentative) definitions of the same name in more then + * warnings for (tentative) definitions of the same name in more than * one translation unit */ int sflag; |