Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/helt/held+s/eroneously/erroneously/+s/splitted/split/+s/re...
details: https://anonhg.NetBSD.org/src/rev/591c6dd1c3d3
branches: trunk
changeset: 1023048:591c6dd1c3d3
user: andvar <andvar%NetBSD.org@localhost>
date: Sat Aug 21 09:59:45 2021 +0000
description:
s/helt/held+s/eroneously/erroneously/+s/splitted/split/+s/recommented/recommended/
diffstat:
UPDATING | 8 ++++----
sys/arch/sparc/conf/majors.sparc | 4 ++--
sys/arch/sparc64/conf/majors.sparc64 | 4 ++--
sys/arch/vax/include/disklabel.h | 4 ++--
sys/arch/x68k/dev/rtclock_var.h | 4 ++--
sys/dev/ieee1394/fwohci.c | 12 ++++++------
sys/dev/pci/auixp.c | 6 +++---
sys/fs/udf/udf_strat_rmw.c | 6 +++---
sys/fs/udf/udf_subr.c | 6 +++---
sys/kern/vfs_dirhash.c | 6 +++---
tests/dev/audio/audiotest.c | 6 +++---
usr.sbin/makefs/udf.c | 6 +++---
usr.sbin/postinstall/postinstall.in | 6 +++---
13 files changed, 39 insertions(+), 39 deletions(-)
diffs (truncated from 350 to 300 lines):
diff -r 28176f6175ab -r 591c6dd1c3d3 UPDATING
--- a/UPDATING Sat Aug 21 09:08:55 2021 +0000
+++ b/UPDATING Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: UPDATING,v 1.319 2021/07/11 21:58:52 mrg Exp $
+$NetBSD: UPDATING,v 1.320 2021/08/21 09:59:45 andvar Exp $
This file (UPDATING) is intended to be a brief reference to recent
changes that might cause problems in the build process, and a guide for
@@ -398,7 +398,7 @@
to IPSEC (and the older IPSEC version removed).
20130605:
- Previous freetype installations eroneously installed private
+ Previous freetype installations erroneously installed private
header files. If you are building against a non-empty $DESTDIR,
please remove ${DESTDIR}//usr/X11R7/include/freetype2/freetype/.
@@ -538,7 +538,7 @@
build problems with xsrc.
20100522:
- private section of <ctype.h> was splitted, and now mklocale(1)
+ private section of <ctype.h> was split, and now mklocale(1)
include ctype_local.h, so you have to make cleandir in tools/mklocale.
20100520:
@@ -609,7 +609,7 @@
20090202:
pkg_install now depends on the pkgdb cache for automatic conflict
- detection. It is recommented to rebuild the cache with
+ detection. It is recommended to rebuild the cache with
``pkg_admin rebuild''.
20090110:
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/arch/sparc/conf/majors.sparc
--- a/sys/arch/sparc/conf/majors.sparc Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/arch/sparc/conf/majors.sparc Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: majors.sparc,v 1.40 2020/04/04 16:06:16 jdolecek Exp $
+# $NetBSD: majors.sparc,v 1.41 2021/08/21 09:59:45 andvar Exp $
#
# Device majors for sparc
#
@@ -127,7 +127,7 @@
# New machine-independent driver majors are assigned in
# sys/conf/majors.
-# ld has (eroneously) been assigned a MD major on some ports, this one
+# ld has (erroneously) been assigned a MD major on some ports, this one
# is from the (mostly unused) sys/conf/majors.storage
device-major ld char 303 block 303 ld
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/arch/sparc64/conf/majors.sparc64
--- a/sys/arch/sparc64/conf/majors.sparc64 Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/arch/sparc64/conf/majors.sparc64 Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: majors.sparc64,v 1.40 2021/06/29 10:22:37 nia Exp $
+# $NetBSD: majors.sparc64,v 1.41 2021/08/21 09:59:45 andvar Exp $
#
# Device majors for sparc64
#
@@ -124,6 +124,6 @@
# New machine-independent driver majors are assigned in
# sys/conf/majors.
-# ld has (eroneously) been assigned a MD major on some ports, this one
+# ld has (erroneously) been assigned a MD major on some ports, this one
# is from the (mostly unused) sys/conf/majors.storage
device-major ld char 303 block 303 ld
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/arch/vax/include/disklabel.h
--- a/sys/arch/vax/include/disklabel.h Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/arch/vax/include/disklabel.h Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: disklabel.h,v 1.7 2013/04/04 12:50:03 martin Exp $ */
+/* $NetBSD: disklabel.h,v 1.8 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@@ -40,7 +40,7 @@
#define OLDMAXPARTITIONS 8 /* number of partitions before nb-6 */
#define RAW_PART 2 /* raw partition: xx?c */
/*
- * In NetBSD 6 we eroneously used a too large MAXPARTITIONS value (disklabel
+ * In NetBSD 6 we erroneously used a too large MAXPARTITIONS value (disklabel
* overlapped with important parts of the bootblocks and made some machines
* unbootable).
*/
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/arch/x68k/dev/rtclock_var.h
--- a/sys/arch/x68k/dev/rtclock_var.h Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/arch/x68k/dev/rtclock_var.h Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rtclock_var.h,v 1.11 2009/01/03 09:32:13 isaki Exp $ */
+/* $NetBSD: rtclock_var.h,v 1.12 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright 1993, 1994 Masaru Oki
@@ -31,7 +31,7 @@
*/
/*
- * Should be splitted to _reg.h and _var.h
+ * Should be split to _reg.h and _var.h
*/
#ifndef _RTCLOCKVAR_H_
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/dev/ieee1394/fwohci.c
--- a/sys/dev/ieee1394/fwohci.c Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/dev/ieee1394/fwohci.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fwohci.c,v 1.146 2021/08/07 16:19:12 thorpej Exp $ */
+/* $NetBSD: fwohci.c,v 1.147 2021/08/21 09:59:46 andvar Exp $ */
/*-
* Copyright (c) 2003 Hidetoshi Shimokawa
@@ -37,7 +37,7 @@
*
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.146 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.147 2021/08/21 09:59:46 andvar Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -2683,7 +2683,7 @@
hlen = tinfo[fp0->mode.common.tcode].hdr_len;
if (hlen > len) {
if (firewire_debug)
- printf("splitted header\n");
+ printf("split header\n");
return len - hlen;
}
#if BYTE_ORDER == BIG_ENDIAN
@@ -2796,7 +2796,7 @@
void *buf;
if (dbch->buf_offset < 0) {
- /* splitted in header, pull up */
+ /* split in header, pull up */
char *p;
rlen -= dbch->buf_offset;
@@ -2824,7 +2824,7 @@
vec[0].iov_base = (char *)&pktbuf;
vec[0].iov_len = offset;
} else {
- /* splitted in payload */
+ /* split in payload */
buf = (char *)dbch->pdb_tr->buf +
dbch->buf_offset;
rlen = psize - dbch->buf_offset;
@@ -2874,7 +2874,7 @@
if (len < 0) {
dbch->pdb_tr = db_tr;
if (firewire_debug)
- printf("splitted payload\n");
+ printf("split payload\n");
/* sanity check */
if (resCount != 0) {
aprint_error_dev(sc->fc.dev,
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/dev/pci/auixp.c
--- a/sys/dev/pci/auixp.c Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/dev/pci/auixp.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: auixp.c,v 1.51 2021/08/20 20:25:28 andvar Exp $ */
+/* $NetBSD: auixp.c,v 1.52 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (c) 2004, 2005 Reinoud Zandijk <reinoud%netbsd.org@localhost>
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.51 2021/08/20 20:25:28 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.52 2021/08/21 09:59:46 andvar Exp $");
#include <sys/types.h>
#include <sys/errno.h>
@@ -360,7 +360,7 @@
value &= ~ATI_REG_CMD_SPDF_CONFIG_MASK;
value |= ATI_REG_CMD_SPDF_CONFIG_34; /* NetBSD AC'97 default */
- /* XXX this prolly is not necessary unless splitted XXX */
+ /* XXX this prolly is not necessary unless split XXX */
value &= ~ATI_REG_CMD_INTERLEAVE_SPDF;
if (params->precision <= 16)
value |= ATI_REG_CMD_INTERLEAVE_SPDF;
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/fs/udf/udf_strat_rmw.c
--- a/sys/fs/udf/udf_strat_rmw.c Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/fs/udf/udf_strat_rmw.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_strat_rmw.c,v 1.28 2016/05/24 09:55:57 reinoud Exp $ */
+/* $NetBSD: udf_strat_rmw.c,v 1.29 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_strat_rmw.c,v 1.28 2016/05/24 09:55:57 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_strat_rmw.c,v 1.29 2021/08/21 09:59:46 andvar Exp $");
#endif /* not lint */
@@ -171,7 +171,7 @@
ret = cv_timedwait(&priv->discstrat_cv, &priv->discstrat_mutex,
hz/8);
if (ret == EWOULDBLOCK)
- DPRINTF(LOCKING, ("eccline lock helt, waiting for "
+ DPRINTF(LOCKING, ("eccline lock held, waiting for "
"release"));
}
eccline->flags |= ECC_LOCKED;
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/fs/udf/udf_subr.c
--- a/sys/fs/udf/udf_subr.c Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/fs/udf/udf_subr.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_subr.c,v 1.155 2021/08/20 20:25:28 andvar Exp $ */
+/* $NetBSD: udf_subr.c,v 1.156 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.155 2021/08/20 20:25:28 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.156 2021/08/21 09:59:46 andvar Exp $");
#endif /* not lint */
@@ -5202,7 +5202,7 @@
addr_type = icbflags & UDF_ICB_TAG_FLAGS_ALLOC_MASK;
}
- /* make sure the next fid desc_tag won't be splitted */
+ /* make sure the next fid desc_tag won't be split */
if (addr_type != UDF_ICB_INTERN_ALLOC) {
end_fid_pos = chosen_fid_pos + chosen_size;
lb_rest = lb_size - (end_fid_pos % lb_size);
diff -r 28176f6175ab -r 591c6dd1c3d3 sys/kern/vfs_dirhash.c
--- a/sys/kern/vfs_dirhash.c Sat Aug 21 09:08:55 2021 +0000
+++ b/sys/kern/vfs_dirhash.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_dirhash.c,v 1.13 2019/02/10 17:13:33 christos Exp $ */
+/* $NetBSD: vfs_dirhash.c,v 1.14 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (c) 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_dirhash.c,v 1.13 2019/02/10 17:13:33 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_dirhash.c,v 1.14 2021/08/21 09:59:46 andvar Exp $");
/* CLEAN UP! */
#include <sys/param.h>
@@ -55,7 +55,7 @@
*
* The global dirhash_queue is protected by the dirhashmutex. This lock is
* internal only and is FS/mountpoint/vnode independent. On exit of the
- * exported functions this mutex is not helt.
+ * exported functions this mutex is not held.
*
* The dirhash structure is considered part of the vnode/inode/udf_node
* structure and will thus use the lock that protects that vnode/inode.
diff -r 28176f6175ab -r 591c6dd1c3d3 tests/dev/audio/audiotest.c
--- a/tests/dev/audio/audiotest.c Sat Aug 21 09:08:55 2021 +0000
+++ b/tests/dev/audio/audiotest.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: audiotest.c,v 1.14 2021/07/21 06:18:32 isaki Exp $ */
+/* $NetBSD: audiotest.c,v 1.15 2021/08/21 09:59:46 andvar Exp $ */
/*
* Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.14 2021/07/21 06:18:32 isaki Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.15 2021/08/21 09:59:46 andvar Exp $");
#include <errno.h>
#include <fcntl.h>
@@ -4159,7 +4159,7 @@
}
/*
- * FIOASYNC between two descriptors should be splitted.
+ * FIOASYNC between two descriptors should be split.
*/
DEF(FIOASYNC_reset)
{
diff -r 28176f6175ab -r 591c6dd1c3d3 usr.sbin/makefs/udf.c
--- a/usr.sbin/makefs/udf.c Sat Aug 21 09:08:55 2021 +0000
+++ b/usr.sbin/makefs/udf.c Sat Aug 21 09:59:45 2021 +0000
@@ -1,4 +1,4 @@
Home |
Main Index |
Thread Index |
Old Index