-$Id: CHANGES,v 1.57 2000/05/28 17:50:27 stelian Exp $
+$Id: CHANGES,v 1.58 2000/05/28 18:16:42 stelian Exp $
Changes between versions 0.4b16 and 0.4b17 (released ??????????????)
====================================================================
4. Made quotes work in interactive restore.
+5. Small fixes in order to allow dump to compile with a
+ really old e2fsprogs version.
+
Changes between versions 0.4b15 and 0.4b16 (released March 11, 2000)
====================================================================
-$Id: TODO,v 1.13 2000/03/02 11:41:29 stelian Exp $
+$Id: TODO,v 1.14 2000/05/28 18:16:42 stelian Exp $
Need to verify:
---------------
the specified archive_file to be used by
ufsrestore(1M) to determine whether a file is in
the dump file that is being restored.
+
+9. Add readline capabilities to interactive restore. Does
+ this mean huge static restore or not?
+
+10. Do the compare on the fly in restore C mode (useful
+ when comparing huge files and you have not enough space
+ in /tmp).
#ifndef lint
static const char rcsid[] =
- "$Id: traverse.c,v 1.17 2000/03/03 11:43:35 stelian Exp $";
+ "$Id: traverse.c,v 1.18 2000/05/28 18:16:42 stelian Exp $";
#endif /* not lint */
#include <sys/param.h>
#else
retval = ext2fs_open(disk, 0, 0, 0, unix_io_manager, fs);
#endif
+#if defined(EXT2_LIB_FEATURE_COMPAT_SUPP) && defined(EXT2_LIB_FEATURE_INCOMPAT_SUPP) && defined(EXT2_LIB_FEATURE_RO_COMPAT_SUPP) && defined(EXT2_ET_UNSUPP_FEATURE) && defined(EXT2_ET_RO_UNSUPP_FEATURE)
if (!retval) {
s = (struct ext2fs_sb *) (*fs)->super;
if ((s->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) ||
retval = EXT2_ET_RO_UNSUPP_FEATURE;
}
}
+#endif /* defined && defined && defined... */
return retval;
}