Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/sysinst fix few typos for word "previous(ly)" in co...
details: https://anonhg.NetBSD.org/src/rev/6e84ffcf9f1b
branches: trunk
changeset: 364412:6e84ffcf9f1b
user: andvar <andvar%NetBSD.org@localhost>
date: Wed Mar 23 13:06:06 2022 +0000
description:
fix few typos for word "previous(ly)" in comments.
diffstat:
sys/fs/udf/udf_vfsops.c | 6 +++---
sys/ufs/lfs/lfs_inode.h | 4 ++--
sys/ufs/ufs/inode.h | 4 ++--
usr.sbin/acpitools/aml/aml_parse.c | 6 +++---
usr.sbin/sysinst/mbr.c | 4 ++--
5 files changed, 12 insertions(+), 12 deletions(-)
diffs (108 lines):
diff -r 369046327a7d -r 6e84ffcf9f1b sys/fs/udf/udf_vfsops.c
--- a/sys/fs/udf/udf_vfsops.c Wed Mar 23 11:08:27 2022 +0000
+++ b/sys/fs/udf/udf_vfsops.c Wed Mar 23 13:06:06 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_vfsops.c,v 1.83 2021/12/16 21:39:53 reinoud Exp $ */
+/* $NetBSD: udf_vfsops.c,v 1.84 2022/03/23 13:06:06 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.83 2021/12/16 21:39:53 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.84 2022/03/23 13:06:06 andvar Exp $");
#endif /* not lint */
@@ -647,7 +647,7 @@
* is enough space to open/close new session
*/
}
- /* double check if we're not mounting a pervious session RW */
+ /* double check if we're not mounting a previous session RW */
if (args->sessionnr != 0) {
printf("UDF mount: updating a previous session "
"not yet allowed\n");
diff -r 369046327a7d -r 6e84ffcf9f1b sys/ufs/lfs/lfs_inode.h
--- a/sys/ufs/lfs/lfs_inode.h Wed Mar 23 11:08:27 2022 +0000
+++ b/sys/ufs/lfs/lfs_inode.h Wed Mar 23 13:06:06 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lfs_inode.h,v 1.25 2020/02/23 08:38:58 riastradh Exp $ */
+/* $NetBSD: lfs_inode.h,v 1.26 2022/03/23 13:06:06 andvar Exp $ */
/* from NetBSD: ulfs_inode.h,v 1.5 2013/06/06 00:51:50 dholland Exp */
/* from NetBSD: inode.h,v 1.72 2016/06/03 15:36:03 christos Exp */
@@ -73,7 +73,7 @@
* currently stashed in the vnode between VOP_LOOKUP and directory
* operation VOPs, which is gross.
*
- * XXX ulr_diroff is a lookup hint from the previos call of VOP_LOOKUP.
+ * XXX ulr_diroff is a lookup hint from the previous call of VOP_LOOKUP.
* probably it should not be here.
*/
struct ulfs_lookup_results {
diff -r 369046327a7d -r 6e84ffcf9f1b sys/ufs/ufs/inode.h
--- a/sys/ufs/ufs/inode.h Wed Mar 23 11:08:27 2022 +0000
+++ b/sys/ufs/ufs/inode.h Wed Mar 23 13:06:06 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: inode.h,v 1.78 2020/08/20 20:28:13 christos Exp $ */
+/* $NetBSD: inode.h,v 1.79 2022/03/23 13:06:06 andvar Exp $ */
/*
* Copyright (c) 1982, 1989, 1993
@@ -52,7 +52,7 @@
* currently stashed in the vnode between VOP_LOOKUP and directory
* operation VOPs, which is gross.
*
- * XXX ulr_diroff is a lookup hint from the previos call of VOP_LOOKUP.
+ * XXX ulr_diroff is a lookup hint from the previous call of VOP_LOOKUP.
* probably it should not be here.
*/
struct ufs_lookup_results {
diff -r 369046327a7d -r 6e84ffcf9f1b usr.sbin/acpitools/aml/aml_parse.c
--- a/usr.sbin/acpitools/aml/aml_parse.c Wed Mar 23 11:08:27 2022 +0000
+++ b/usr.sbin/acpitools/aml/aml_parse.c Wed Mar 23 13:06:06 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: aml_parse.c,v 1.5 2021/10/24 20:00:12 andvar Exp $ */
+/* $NetBSD: aml_parse.c,v 1.6 2022/03/23 13:06:06 andvar Exp $ */
/*-
* Copyright (c) 1999 Doug Rabson
@@ -30,7 +30,7 @@
* $FreeBSD: src/usr.sbin/acpi/amldb/aml/aml_parse.c,v 1.7 2001/10/23 14:54:15 takawata Exp $
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: aml_parse.c,v 1.5 2021/10/24 20:00:12 andvar Exp $");
+__RCSID("$NetBSD: aml_parse.c,v 1.6 2022/03/23 13:06:06 andvar Exp $");
#include <sys/param.h>
@@ -1300,7 +1300,7 @@
aml_free_objectcontent(ret);
if (env->stat == aml_stat_panic) {
/*
- * If previosuly parser panic , parsing next instruction is
+ * If previously parser panic , parsing next instruction is
* prohibited.
*/
return (NULL);
diff -r 369046327a7d -r 6e84ffcf9f1b usr.sbin/sysinst/mbr.c
--- a/usr.sbin/sysinst/mbr.c Wed Mar 23 11:08:27 2022 +0000
+++ b/usr.sbin/sysinst/mbr.c Wed Mar 23 13:06:06 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mbr.c,v 1.41 2022/01/24 09:14:38 andvar Exp $ */
+/* $NetBSD: mbr.c,v 1.42 2022/03/23 13:06:06 andvar Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -2046,7 +2046,7 @@
/*
* If we are in an extended partition chain, unlink this MBR,
* unless it is the very first one at the start of the extended
- * partition (we would have no previos ext mbr to fix up
+ * partition (we would have no previous ext mbr to fix up
* the chain in that case)
*/
if (marg->parts->mbr.extended == mb) {
Home |
Main Index |
Thread Index |
Old Index