ChangeLog, ls.c:

ls.c (list_super2): Fix bug where we were printing the filesystem UUID
  	instead of journal UUID when trying to display the journal UUID.
bitmap-optimize
Theodore Ts'o 2001-01-16 06:41:54 +00:00
parent c2204b3285
commit 4ecf9d6ee4
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -215,7 +215,7 @@ void list_super2(struct ext2_super_block * sb, FILE *f)
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);