ChangeLog, util.c:
  util.c (get_backup_sb): Calculate backup superblock correctly when the
  	blocksize is > 1k.

diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog
index ae9a577..07c24e7 100644
--- a/e2fsck/ChangeLog
+++ b/e2fsck/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-30    <tytso@snap.thunk.org>
+
+	* util.c (get_backup_sb): Calculate backup superblock correctly
+		when the blocksize is > 1k.
+
 2000-10-26    <tytso@snap.thunk.org>
 
 	* jfs.h, jfs_compat.h, journal.c: Updated to include the
diff --git a/e2fsck/util.c b/e2fsck/util.c
index 0534b11..9414ee9 100644
--- a/e2fsck/util.c
+++ b/e2fsck/util.c
@@ -318,7 +318,7 @@
 {
 	if (!fs || !fs->super)
 		return 8193;
-	return fs->super->s_blocks_per_group + 1;
+	return fs->super->s_blocks_per_group + fs->super->s_first_data_block;
 }
 
 /*