]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-07-21 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Tue, 21 Jul 2009 12:58:41 +0000 (12:58 +0000)
committerphcoder <phcoder@localhost>
Tue, 21 Jul 2009 12:58:41 +0000 (12:58 +0000)
* fs/ufs.c (grub_ufs_sblock): Fix offset of mtime2 which was off by
128 bytes

ChangeLog
fs/ufs.c

index 6cfc6dd3c0a9d93782c1e68b9668d8503e46c7ec..02d5af1323fbf6aae8cef13e0a4aa2da03b9ce86 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-21  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * fs/ufs.c (grub_ufs_sblock): Fix offset of mtime2 which was off by
+       128 bytes
+
 2009-07-20  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Add BFS support
index 7a2d21f251dbaffe88bbe500c348cea0ade0f687..c9531b5a7edb303aac37ed08810ec3bfdaf84a4b 100644 (file)
--- a/fs/ufs.c
+++ b/fs/ufs.c
@@ -99,10 +99,10 @@ struct grub_ufs_sblock
 
   /* Volume name for UFS2.  */
   grub_uint8_t volume_name[GRUB_UFS_VOLNAME_LEN];
-  grub_uint8_t unused8[232];
+  grub_uint8_t unused8[360];
 
   grub_uint64_t mtime2;
-  grub_uint8_t unused9[420];
+  grub_uint8_t unused9[292];
 
   /* Magic value to check if this is really a UFS filesystem.  */
   grub_uint32_t magic;