From 552311036c4a595018037031f7d335c97c8ba83b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 25 Jul 2001 12:37:12 +0000 Subject: (removeXiBSuffix): add TB (tera) --- perl-install/common.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-install/common.pm b/perl-install/common.pm index c33b59878..50da27856 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -93,6 +93,7 @@ sub removeXiBSuffix { /(\d+)\s*kB?$/i and return $1 * 1024; /(\d+)\s*MB?$/i and return $1 * 1024 * 1024; /(\d+)\s*GB?$/i and return $1 * 1024 * 1024 * 1024; + /(\d+)\s*TB?$/i and return $1 * 1024 * 1024 * 1024 * 1024; $_; } sub formatXiB { -- cgit v1.2.1