diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-08-22 13:14:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-08-22 13:14:24 +0000 |
commit | b19b34a08590f33973ffc9449accc21cdb1adbba (patch) | |
tree | c9f1ba71ae1588e87ab4b3b430aa2e4528c47aa8 /perl-install/common.pm | |
parent | ae35def9865df3f82303a8c72c41d0b966651f5a (diff) | |
download | drakx-b19b34a08590f33973ffc9449accc21cdb1adbba.tar drakx-b19b34a08590f33973ffc9449accc21cdb1adbba.tar.gz drakx-b19b34a08590f33973ffc9449accc21cdb1adbba.tar.bz2 drakx-b19b34a08590f33973ffc9449accc21cdb1adbba.tar.xz drakx-b19b34a08590f33973ffc9449accc21cdb1adbba.zip |
no_comment
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 89d41b516..1be6d4f95 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -595,7 +595,7 @@ sub df { my ($blocksize, $size, $free); my $buf = ' ' x 20000; syscall_('statfs', $mntpoint, $buf) or return; - (undef, $blocksize, $size, undef, $free, undef) = unpack "L2L4", $buf; + (undef, $blocksize, $size, $free, undef, undef) = unpack "L6", $buf; map { $_ * ($blocksize / 1024) } $size, $free; } |