From: Steve Lord Date: Fri, 6 Jul 2001 20:08:33 +0000 (+0000) Subject: Fix negated case on check, gets rid of bogus error following ag xx X-Git-Tag: v1.3.0~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1c5aee787975e7b9deb9614780913a0f9935b6a;p=thirdparty%2Fxfsprogs-dev.git Fix negated case on check, gets rid of bogus error following ag xx unlinked list messages. --- 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);