Whamcloud - gitweb
ChangeLog, fsck.c:
authorTheodore Ts'o <tytso@mit.edu>
Tue, 26 Oct 1999 01:58:54 +0000 (01:58 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 26 Oct 1999 01:58:54 +0000 (01:58 +0000)
  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
configure.in
misc/ChangeLog
misc/fsck.c
misc/mke2fs.c

index 457d4d7..828931e 100644 (file)
--- 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
index 3f022e4..723ecd3 100644 (file)
@@ -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,
index 4d1701d..6f38099 100644 (file)
@@ -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
index fa1a3da..2a708f9 100644 (file)
@@ -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;
        
index 96e5e8b..1c1c19a 100644 (file)
@@ -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)");
         }