freebsd-ports/security/chaosreader/files/patch-chaosreader

16 lines
487 B
Text
Raw Normal View History

--- chaosreader.orig 2014-06-15 19:30:11 UTC
+++ chaosreader
@@ -4275,7 +4275,11 @@ END
print REPLAY "ms($timediff1);\n";
}
$duration = 0.01 if $duration == 0; # avoid divide by 0,
- $speed = sprintf("%.2f",$bytes / (1024 * $duration));
+ if ( $duration > 0 ) {
+ $speed = sprintf("%.2f",$bytes / (1024 * $duration));
+ } else {
+ $speed = "unknown";
+ }
print REPLAY "print \"\n\n" .
"Summary: $duration2 seconds, $bytes bytes, $speed Kb/sec\\n\";";
close REPLAY;