fsck_ffs(8): Fix a typo in a source code comment

- s/it it/if it/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2022-04-09 14:37:13 +02:00
parent 009727ed57
commit 299fcf402d

View File

@ -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;