ls.c (list_super2): Fix bug where we were printing the filesystem UUID
instead of journal UUID when trying to display the journal UUID.
+2001-01-15 Theodore Ts'o <tytso@valinux.com>
+
+ * ls.c (list_super2): Fix bug where we were printing the
+ filesystem UUID instead of journal UUID when trying to
+ display the journal UUID.
+
2001-01-14 Theodore Ts'o <tytso@valinux.com>
* feature.c: Remove backward compatibility #ifdef's for old
if (e2p_is_null_uuid(sb->s_journal_uuid)) {
strcpy(buf, "<none>");
} else
- e2p_uuid_to_str(sb->s_uuid, buf);
+ e2p_uuid_to_str(sb->s_journal_uuid, buf);
fprintf(f, "Journal UUID: %s\n", buf);
fprintf(f, "Journal inode: %u\n", sb->s_journal_inum);
fprintf(f, "Journal device: 0x%04x\n", sb->s_journal_dev);