From f1c5aee787975e7b9deb9614780913a0f9935b6a Mon Sep 17 00:00:00 2001 From: Steve Lord Date: Fri, 6 Jul 2001 20:08:33 +0000 Subject: [PATCH] Fix negated case on check, gets rid of bogus error following ag xx unlinked list messages. --- repair/phase3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repair/phase3.c b/repair/phase3.c index c07916d6a..d5cbf03b8 100644 --- a/repair/phase3.c +++ b/repair/phase3.c @@ -53,7 +53,7 @@ walk_unlinked_list(xfs_mount_t *mp, xfs_agnumber_t agno, xfs_agino_t start_ino) int state; while (current_ino != NULLAGINO) { - if (!verify_aginum(mp, agno, current_ino)) + if (verify_aginum(mp, agno, current_ino)) return(1); if ((bp = get_agino_buf(mp, agno, current_ino, &dip)) == NULL) return(1); -- 2.47.2