ChangeLog, fsck.c:
  fsck.c (execute): Fix really stupid bug in the linked list management
  	which caused fsck in parallel mode to go into an infinite loop.
ChangeLog, mke2fs.c:
  mke2fs.c (show_stats): Capitalized Hurd to make the GNU types happy.
ChangeLog, configure.in:
  configure.in: Capitalized Hurd to make the GNU folks happy.

diff --git a/ChangeLog b/ChangeLog
index 457d4d7..828931e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-10-25    <tytso@valinux.com>
+
+	* configure.in: Capitalized Hurd to make the GNU folks happy.
+
 1999-10-22    <tytso@valinux.com>
 
 	* Release of E2fsprogs 1.16
diff --git a/configure.in b/configure.in
index 3f022e4..723ecd3 100644
--- a/configure.in
+++ b/configure.in
@@ -455,7 +455,7 @@
   AC_DEFINE(HAVE_OPTRESET)
 fi
 dnl
-dnl See if using the EXT2 ioctls causes a compile-time barf (as on the hurd).
+dnl See if using the EXT2 ioctls causes a compile-time barf (as on the Hurd).
 dnl
 AC_MSG_CHECKING(whether the ext2 ioctls compile)
 AC_CACHE_VAL(e2fsprogs_cv_ioctl_ext2,
diff --git a/misc/ChangeLog b/misc/ChangeLog
index 4d1701d..6f38099 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,12 @@
+1999-10-25    <tytso@valinux.com>
+
+	* mke2fs.c (show_stats): Capitalized Hurd to make the GNU types
+		happy. 
+
+	* fsck.c (execute): Fix really stupid bug in the linked list
+		management which caused fsck in parallel mode to go into
+		an infinite loop.
+
 1999-10-22    <tytso@valinux.com>
 
 	* Release of E2fsprogs 1.16
diff --git a/misc/fsck.c b/misc/fsck.c
index fa1a3da..2a708f9 100644
--- a/misc/fsck.c
+++ b/misc/fsck.c
@@ -443,7 +443,7 @@
 	for (p = instance_list; p && p->next; p = p->next);
 
 	if (p)
-		p->next = instance_list;
+		p->next = inst;
 	else
 		instance_list = inst;
 	
diff --git a/misc/mke2fs.c b/misc/mke2fs.c
index 96e5e8b..1c1c19a 100644
--- a/misc/mke2fs.c
+++ b/misc/mke2fs.c
@@ -567,7 +567,7 @@
 	printf("OS type: ");
 	switch (fs->super->s_creator_os) {
 	    case EXT2_OS_LINUX: printf ("Linux"); break;
-	    case EXT2_OS_HURD:  printf ("GNU/hurd");   break;
+	    case EXT2_OS_HURD:  printf ("GNU/Hurd");   break;
 	    case EXT2_OS_MASIX: printf ("Masix"); break;
 	    default:		printf ("(unknown os)");
         }