summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@FreeBSD.org>2026-01-05 20:35:37 +0000
committerJose Luis Duran <jlduran@FreeBSD.org>2026-01-15 19:38:55 +0000
commit2bcc55600d896c83c077a59c5b16280a5c27dd45 (patch)
tree98dca8799c51f3a0b782c8e6a8822dc361e02e90
parent99d4a01be578406e8fad2b9e137ff75498a5d9a9 (diff)
makefs: Fix typo 's/mirrorring/mirroring/'
MFC after: 1 week (cherry picked from commit 73af599fb7be6806b553ac6f470d76711b74286c)
-rw-r--r--usr.sbin/makefs/msdos/msdosfs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/makefs/msdos/msdosfs_vfsops.c b/usr.sbin/makefs/msdos/msdosfs_vfsops.c
index 8b5eac4a4b66..c6d0a38c834b 100644
--- a/usr.sbin/makefs/msdos/msdosfs_vfsops.c
+++ b/usr.sbin/makefs/msdos/msdosfs_vfsops.c
@@ -163,7 +163,7 @@ m_msdosfs_mount(struct m_vnode *devvp)
pmp->pm_fatdiv = 1;
pmp->pm_FATsecs = getulong(b710->bpbBigFATsecs);
- /* mirrorring is enabled if the FATMIRROR bit is not set */
+ /* mirroring is enabled if the FATMIRROR bit is not set */
if ((getushort(b710->bpbExtFlags) & FATMIRROR) == 0)
pmp->pm_flags |= MSDOSFS_FATMIRROR;
else