git: 299fcf402dca - main - fsck_ffs(8): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 09 Apr 2022 12:42:33 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=299fcf402dca215057b798286983f82c63a70a25 commit 299fcf402dca215057b798286983f82c63a70a25 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-09 12:37:13 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-09 12:38:00 +0000 fsck_ffs(8): Fix a typo in a source code comment - s/it it/if it/ MFC after: 3 days --- 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;