if (strcmp(fs->type, "auto") != 0) {
type = fs->type;
if (G.verbose > 2)
- bb_info_msg("using filesystem type '%s' %s",
+ printf("using filesystem type '%s' %s\n",
type, "from fstab");
} else if (G.fstype
&& (G.fstype[0] != 'n' || G.fstype[1] != 'o') /* != "no" */
) {
type = G.fstype;
if (G.verbose > 2)
- bb_info_msg("using filesystem type '%s' %s",
+ printf("using filesystem type '%s' %s\n",
type, "from -t");
} else {
type = "auto";
if (G.verbose > 2)
- bb_info_msg("using filesystem type '%s' %s",
+ printf("using filesystem type '%s' %s\n",
type, "(default)");
}