Module Name: src
Committed By: skrll
Date: Tue Apr 19 09:25:39 UTC 2022
Modified Files:
src/sys/lib/libsa: ext2fs.c minixfs3.c ufs.c
Log Message:
Typo in comment. avoinds -> avoids
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/lib/libsa/ext2fs.c
cvs rdiff -u -r1.8 -r1.9 src/sys/lib/libsa/minixfs3.c
cvs rdiff -u -r1.80 -r1.81 src/sys/lib/libsa/ufs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/lib/libsa/ext2fs.c
diff -u src/sys/lib/libsa/ext2fs.c:1.29 src/sys/lib/libsa/ext2fs.c:1.30
--- src/sys/lib/libsa/ext2fs.c:1.29 Fri Jan 24 13:20:33 2020
+++ src/sys/lib/libsa/ext2fs.c Tue Apr 19 09:25:38 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ext2fs.c,v 1.29 2020/01/24 13:20:33 jakllsch Exp $ */
+/* $NetBSD: ext2fs.c,v 1.30 2022/04/19 09:25:38 skrll Exp $ */
/*
* Copyright (c) 1997 Manuel Bouyer.
@@ -544,7 +544,7 @@ ext2fs_open(const char *path, struct ope
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = EXT2_NINDIR(fs);
Index: src/sys/lib/libsa/minixfs3.c
diff -u src/sys/lib/libsa/minixfs3.c:1.8 src/sys/lib/libsa/minixfs3.c:1.9
--- src/sys/lib/libsa/minixfs3.c:1.8 Sun Mar 31 20:08:45 2019
+++ src/sys/lib/libsa/minixfs3.c Tue Apr 19 09:25:38 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: minixfs3.c,v 1.8 2019/03/31 20:08:45 christos Exp $ */
+/* $NetBSD: minixfs3.c,v 1.9 2022/04/19 09:25:38 skrll Exp $ */
/*-
* Copyright (c) 2012
@@ -572,7 +572,7 @@ minixfs3_open(const char *path, struct o
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = MFS_NINDIR(fs);
Index: src/sys/lib/libsa/ufs.c
diff -u src/sys/lib/libsa/ufs.c:1.80 src/sys/lib/libsa/ufs.c:1.81
--- src/sys/lib/libsa/ufs.c:1.80 Thu May 27 06:54:44 2021
+++ src/sys/lib/libsa/ufs.c Tue Apr 19 09:25:38 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ufs.c,v 1.80 2021/05/27 06:54:44 mrg Exp $ */
+/* $NetBSD: ufs.c,v 1.81 2022/04/19 09:25:38 skrll Exp $ */
/*-
* Copyright (c) 1993
@@ -701,7 +701,7 @@ ufs_open(const char *path, struct open_f
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = UFS_NINDIR(fs);