diff options
author | Francois Pons <fpons@mandriva.com> | 2000-04-14 15:11:57 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-04-14 15:11:57 +0000 |
commit | 21066f8c4d8d136cca65f7138cabb25d4b4cfe8c (patch) | |
tree | e51a023cbbbdea6ad22b962dc4e573603c67f31a /perl-install/resize_fat/dir_entry.pm | |
parent | 3f3ced984833bf1084447c1afd3cfc7d17d0838b (diff) | |
download | drakx-21066f8c4d8d136cca65f7138cabb25d4b4cfe8c.tar drakx-21066f8c4d8d136cca65f7138cabb25d4b4cfe8c.tar.gz drakx-21066f8c4d8d136cca65f7138cabb25d4b4cfe8c.tar.bz2 drakx-21066f8c4d8d136cca65f7138cabb25d4b4cfe8c.tar.xz drakx-21066f8c4d8d136cca65f7138cabb25d4b4cfe8c.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/resize_fat/dir_entry.pm')
-rw-r--r-- | perl-install/resize_fat/dir_entry.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/resize_fat/dir_entry.pm b/perl-install/resize_fat/dir_entry.pm index 390659b0e..d944c04ac 100644 --- a/perl-install/resize_fat/dir_entry.pm +++ b/perl-install/resize_fat/dir_entry.pm @@ -17,7 +17,7 @@ my $DIRECTORY_ATTR = 0x10; sub get_cluster($) { my ($entry) = @_; - $entry->{first_cluster} + ($resize_fat::isFAT32 ? $entry->{first_cluster_high} * 65536 : 0); + $entry->{first_cluster} + ($resize_fat::isFAT32 ? $entry->{first_cluster_high} * (1 << 16) : 0); } sub set_cluster($$) { my ($entry, $val) = @_; @@ -68,7 +68,7 @@ sub remap { my $cluster = get_cluster($entry); my $new_cluster = resize_fat::c_rewritten::fat_remap($cluster); - #-print "remapping cluster ", get_first_cluster($fs, $entry), " to $new_cluster"; + #-print "remapping cluster ", get_cluster($entry), " to $new_cluster"; $new_cluster == $cluster and return; #- no need to modify |