git: b6ab9fc601ee - stable/13 - fsck_ffs(8): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Apr 2022 06:17:59 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=b6ab9fc601ee15cd9e868479136aa828b8c83e5e
commit b6ab9fc601ee15cd9e868479136aa828b8c83e5e
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-09 12:37:13 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-14 06:16:23 +0000
fsck_ffs(8): Fix a typo in a source code comment
- s/it it/if it/
(cherry picked from commit 299fcf402dca215057b798286983f82c63a70a25)
---
sbin/fsck_ffs/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c
index 2724893a5b9a..18634a93c05c 100644
--- a/sbin/fsck_ffs/main.c
+++ b/sbin/fsck_ffs/main.c
@@ -690,7 +690,7 @@ setup_bkgrdchk(struct statfs *mntp, int sbreadfailed, char **filesys)
build_iovec(&iov, &iovlen, "errmsg", errmsg, sizeof(errmsg));
build_iovec(&iov, &iovlen, "update", NULL, 0);
build_iovec(&iov, &iovlen, "snapshot", NULL, 0);
- /* Create snapshot, removing old snapshot it it exists */
+ /* Create snapshot, removing old snapshot if it exists */
while (nmount(iov, iovlen, mntp->f_flags) < 0) {
if (errno == EEXIST && unlink(snapname) == 0)
continue;