diff options
author | Steve Campbell <steve@computurn.com> | 2004-12-21 11:33:55 +0000 |
---|---|---|
committer | Steve Campbell <steve@computurn.com> | 2004-12-21 11:33:55 +0000 |
commit | 884c2af884d7e05b97ed6bd689d3a173df6c9e22 (patch) | |
tree | 6051ee0a11ced28df9b0d520dea60979dee1f848 | |
parent | 55ee9ee384af22d5e7aa995868d0d90c4d7026ad (diff) |
Credit Wouter Verhelst with V1.35
-rw-r--r-- | src/src/eximstats.src | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/src/eximstats.src b/src/src/eximstats.src index 533098459..ed042e451 100644 --- a/src/src/eximstats.src +++ b/src/src/eximstats.src @@ -1,5 +1,5 @@ #!PERL_COMMAND -w -# $Cambridge: exim/src/src/eximstats.src,v 1.3 2004/12/20 13:12:32 steve Exp $ +# $Cambridge: exim/src/src/eximstats.src,v 1.4 2004/12/21 11:33:55 steve Exp $ # Copyright (c) 2001 University of Cambridge. # See the file NOTICE for conditions of use and distribution. @@ -191,7 +191,7 @@ # 2004-12-10 V1.34 Steve Campbell # Eximstats can now parse syslog lines as well as mainlog lines. # -# 2004-12-20 V1.35 Andreas Metzler +# 2004-12-20 V1.35 Wouter Verhelst # Pie charts by volume were actually generated by count. Fixed. @@ -1089,6 +1089,9 @@ else { $chartotherval = 0; my $use_gig = 0; foreach $key (top_n_sort($topcount,$m_data_gigs,$m_data,$m_count)) { + # The largest volume will be the first (top of the list). + # If it has at least 1 gig, then just use gigabytes to avoid + # risking an integer overflow when generating the pie charts. if ($$m_data_gigs{$key}) { $use_gig = 1; } |