]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
ChangeLog, fsck.c:
authorTheodore Ts'o <tytso@mit.edu>
Tue, 1 May 2001 15:44:37 +0000 (15:44 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 1 May 2001 15:44:37 +0000 (15:44 +0000)
  fsck.c (device_already_active): If we're not able to determine the
   base device, we should assume that the device is already active in
   order to force serialization.

misc/ChangeLog
misc/fsck.c

index 851c07069c33aae69ef9e5da03b483c1cacc7f9f..a7935cbb27772cd2cb7394d7cf0dc4931c2bf5d6 100644 (file)
@@ -1,3 +1,9 @@
+2001-05-01  Theodore Tso  <tytso@valinux.com>
+
+       * fsck.c (device_already_active): If we're not able to determine
+               the base device, we should assume that the device is
+               already active in order to force serialization.
+
 2001-04-26  Theodore Tso  <tytso@valinux.com>
 
        * tune2fs.c (parse_tune2fs_options): Interpret -c 0 as -c -1 (for
index e3f1419c527849aca5c3a34f3c334f27521a9f80..2c5699ffdaa8b68b2596b37e0757dd5574189621 100644 (file)
@@ -699,7 +699,7 @@ static int device_already_active(char *device)
 
        base = base_device(device);
        if (!base)
-               return 0;
+               return 1;
        for (inst = instance_list; inst; inst = inst->next) {
                if (!strcmp(base, inst->base_device)) {
                        free(base);