sure interpet_device() is called so that device
specifications which use LABEL= or UUID= are translated
into a real device name.
+2001-11-05 Theodore Tso <tytso@valinux.com>
+
+ * fsck.c (interpret_type): If the "auto" type is specified, make
+ sure interpet_device() is called so that device
+ specifications which use LABEL= or UUID= are translated
+ into a real device name.
+
2001-10-12 Theodore Tso <tytso@valinux.com>
* e2image.c (output_meta_data_blocks): Optimize away excess
const char *type;
if (strcmp(fs->type, "auto") == 0) {
+ if (fs && strchr(fs->device, '='))
+ fs->device = interpret_device(fs->device);
type = identify_fs(fs->device);
if (type) {
free(fs->type);