]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Fix negated case on check, gets rid of bogus error following ag xx
authorSteve Lord <lord@sgi.com>
Fri, 6 Jul 2001 20:08:33 +0000 (20:08 +0000)
committerSteve Lord <lord@sgi.com>
Fri, 6 Jul 2001 20:08:33 +0000 (20:08 +0000)
unlinked list messages.

repair/phase3.c

index c07916d6a4098a734fae9621b95288117cbfcd99..d5cbf03b876a187050071ac09582b4cf1b8c3dd3 100644 (file)
@@ -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);