diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-15 11:19:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-15 11:19:43 +0000 |
commit | 4369deb2fe5f62e6838049c2d9c9c2088049c897 (patch) | |
tree | bcd9d857ff9e06bfb0a2f3f803b8b087367c6aff | |
parent | d38455ae09c536f28ffd9f7ed57587e8df9344f6 (diff) | |
download | drakx-4369deb2fe5f62e6838049c2d9c9c2088049c897.tar drakx-4369deb2fe5f62e6838049c2d9c9c2088049c897.tar.gz drakx-4369deb2fe5f62e6838049c2d9c9c2088049c897.tar.bz2 drakx-4369deb2fe5f62e6838049c2d9c9c2088049c897.tar.xz drakx-4369deb2fe5f62e6838049c2d9c9c2088049c897.zip |
do not drop field {info} that can be created in zero_MBR
-rw-r--r-- | perl-install/partition_table/empty.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table/empty.pm b/perl-install/partition_table/empty.pm index ac02b2bb6..b34b9210c 100644 --- a/perl-install/partition_table/empty.pm +++ b/perl-install/partition_table/empty.pm @@ -30,7 +30,7 @@ sub read($$) { partition_table::raw::zero_MBR($hd); - $hd->{primary}{raw}; + $hd->{primary}{raw}, $hd->{primary}{info}; } 1; |