]> git.wh0rd.org - dump.git/blobdiff - dump/main.c
Fix bug which caused the highest number inode to not be dumped.
[dump.git] / dump / main.c
index e1d3db366f67da6e606b922263e438af8fd20852..bdc31f4f9550600c47c2a05c1c32a58c37a322b2 100644 (file)
@@ -41,7 +41,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: main.c,v 1.61 2001/11/11 00:06:39 stelian Exp $";
+       "$Id: main.c,v 1.63 2002/01/05 23:23:02 stelian Exp $";
 #endif /* not lint */
 
 #include <config.h>
@@ -675,7 +675,7 @@ main(int argc, char *argv[])
        tp_bshift = ffs(TP_BSIZE) - 1;
        if (TP_BSIZE != (1 << tp_bshift))
                quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
-       maxino = fs->super->s_inodes_count;
+       maxino = fs->super->s_inodes_count + 1;
 #if    0
        spcl.c_flags |= DR_NEWINODEFMT;
 #endif
@@ -984,12 +984,11 @@ usage(void)
 #endif
                "MnqSu"
                "] [-B records] [-b blocksize] [-d density]\n"
-               "\t%s [-e inode#,inode#,...] [-E file] [-f file] [-h level] "
-               "[-I nr errors] "
+               "\t%s [-e inode#,inode#,...] [-E file] [-f file] [-h level]\n"
+               "\t%s [-I nr errors] "
 #ifdef HAVE_BZLIB
                "[-j zlevel] "
 #endif
-               "\n\t%s "
 #ifdef USE_QFA
                "[-Q file] "
 #endif