You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/durep/files/durep-0.9-gigabyte.patch

18 lines
327 B

fix `durep -hs 1g` output
Patch by Stephen Tallowitz
http://bugs.gentoo.org/108942
--- durep
+++ durep
@@ -468,7 +468,7 @@
elsif ($temp =~ m/^[mM]/) {
return $size * 1048576;
}
- elsif ($temp =~ m/^[mM]/) {
+ elsif ($temp =~ m/^[gG]/) {
return $size * 1048576 * 1024;
}
return $size;