summaryrefslogtreecommitdiff
path: root/app-admin/durep/files/durep-0.9-gigabyte.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-admin/durep/files/durep-0.9-gigabyte.patch')
-rw-r--r--app-admin/durep/files/durep-0.9-gigabyte.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/app-admin/durep/files/durep-0.9-gigabyte.patch b/app-admin/durep/files/durep-0.9-gigabyte.patch
new file mode 100644
index 000000000000..315cb1c7c813
--- /dev/null
+++ b/app-admin/durep/files/durep-0.9-gigabyte.patch
@@ -0,0 +1,17 @@
+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;