]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Fix typo in mkfs realtime summary inode alloc failure message.
authorNathan Scott <nathans@sgi.com>
Mon, 1 Jul 2002 01:18:23 +0000 (01:18 +0000)
committerNathan Scott <nathans@sgi.com>
Mon, 1 Jul 2002 01:18:23 +0000 (01:18 +0000)
doc/CHANGES
mkfs/proto.c

index f1ab44c16173ce5596b1e6c8f273bb281e642bce..c533118d8a364ed8d3d79d9b9c0ddc24059d2724 100644 (file)
@@ -3,6 +3,7 @@ xfsprogs-2.1.0 (14 Jun 2002)
        - Fix for xfs_repair mangling i8count for dir2_sf directories
        - Minor mkfs.xfs man page update for blocksize limits on Linux
        - xfs_cred.h split into xfs_acl.h, xfs_cap.h and xfs_mac.h
+       - Fix typo in mkfs realtime summary inode alloc failure message
 
 xfsprogs-2.0.6 (30 May 2002)
        - Fix error returns from log recovery (affects xfs_repair).
index afef14a680c7b6abeaca06264cdfdafb70328626..c67cf87516eab109fbdf8dbbc21d3ab526050b9e 100644 (file)
@@ -655,7 +655,7 @@ rtinit(
        error = libxfs_inode_alloc(&tp, mp->m_rootip, IFREG, 1,
                                mp->m_dev, &creds, &rsumip);
        if (error) {
-               fail("Realtime bitmap inode allocation failed", error);
+               fail("Realtime summary inode allocation failed", error);
        }
        mp->m_sb.sb_rsumino = rsumip->i_ino;
        rsumip->i_d.di_size = mp->m_rsumsize;