From ad6783df0c9d06e5c298167de34aec8e6e25e6c2 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 26 Oct 1999 01:58:54 +0000 Subject: [PATCH] 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. --- ChangeLog | 4 ++++ configure.in | 2 +- misc/ChangeLog | 9 +++++++++ misc/fsck.c | 2 +- misc/mke2fs.c | 2 +- 5 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 457d4d7..828931e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-10-25 + + * configure.in: Capitalized Hurd to make the GNU folks happy. + 1999-10-22 * 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 @@ if test $ac_cv_have_optreset = yes; then 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 + + * 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 * 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 @@ static int execute(char *type, char *device, char *mntpt, int interactive) 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 @@ static void show_stats(ext2_filsys fs) 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)"); } -- 1.8.3.1