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.
+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
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,
+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
for (p = instance_list; p && p->next; p = p->next);
if (p)
- p->next = instance_list;
+ p->next = inst;
else
instance_list = inst;
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)");
}