* explicitly turned them off then silently turn them off
* to avoid an unnecessary warning. If the user explicitly
* tried to use crc=0,finobt=1, then issue a warning before
- * turning them off.
+ * turning them off. The same is also for sparse inodes.
*/
if (sb_feat.finobt && mopts.subopt_params[M_FINOBT].seen) {
fprintf(stderr,
_("warning: finobt not supported without CRC support, disabled.\n"));
}
sb_feat.finobt = 0;
- }
- if (sb_feat.spinodes && !sb_feat.crcs_enabled) {
- fprintf(stderr,
-_("warning: sparse inodes not supported without CRC support, disabled.\n"));
+ if (sb_feat.spinodes) {
+ fprintf(stderr,
+ _("warning: sparse inodes not supported without CRC support, disabled.\n"));
+ }
sb_feat.spinodes = 0;
+
}
if (nsflag || nlflag) {