bug-parted
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Parted 1.4.0-pre9


From: Masahiro Sakai
Subject: Re: Parted 1.4.0-pre9
Date: Sat, 11 Nov 2000 17:47:13 +0900 (JST)

From: Andrew Clausen <address@hidden>
Subject: Parted 1.4.0-pre9
Date: Fri, 10 Nov 2000 21:16:04 +1100

> Hi all,
> 
> I've uploaded 1.4.0-pre9.  The only reason this is 1.4.0-pre9,
> and not 1.4.0 is I have an exam on Monday (most of the world's
> Tuesday), and I want to have lots of spare time to handle all
> the bug reports that inevitably follow from a new stable
> release ;-)

I found three problems.

* ped_disk_clobber() is declared, but not implemented.

* ped_constraint_none is declared as "extern" in constraint.h,
  but as "static" in constraint.c

* Defination of PED_DISK_TYPE_FIRST_FEATURE and PED_DISK_TYPE_LAST_FEATURE
  are wrong. should be as following.

diff -urN parted-1.4.0-pre9.orig/include/parted/disk.h 
parted-1.4.0-pre9/include/parted/disk.h
--- parted-1.4.0-pre9.orig/include/parted/disk.h        Sat Oct 14 02:01:35 2000
+++ parted-1.4.0-pre9/include/parted/disk.h     Sat Nov 11 12:07:38 2000
@@ -65,8 +65,8 @@
        PED_DISK_TYPE_EXTENDED=1,
        PED_DISK_TYPE_PARTITION_NAME=2
 } PedDiskTypeFeature;
-#define PED_DISK_TYPE_FIRST_FEATURE    PED_PARTITION_EXTENDED
-#define PED_DISK_TYPE_LAST_FEATURE     PED_PARTITION_NAME
+#define PED_DISK_TYPE_FIRST_FEATURE    PED_DISK_TYPE_EXTENDED
+#define PED_DISK_TYPE_LAST_FEATURE     PED_DISK_TYPE_PARTITION_NAME
 
 struct _PedPartition {
        PedPartition*           prev;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]