X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Feximstats.src;h=080bf178fee9e5f17b995b62c764dedf177a163b;hb=096fee002700c404bfaa504ff0979c76b361782d;hp=015fc5806a0d35f95729bbeff4ed49b0b0296b08;hpb=81aad8c9cc6aa1ad9653966ecfea657056111d57;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/eximstats.src b/src/src/eximstats.src index 015fc5806..080bf178f 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.9 2005/06/30 09:59:34 steve Exp $ +# $Cambridge: exim/src/src/eximstats.src,v 1.10 2005/06/30 10:12:42 steve Exp $ # Copyright (c) 2001 University of Cambridge. # See the file NOTICE for conditions of use and distribution. @@ -1769,10 +1769,10 @@ sub generate_parser { my $user_pattern_index = 0; foreach (@user_patterns) { $user_pattern_totals[$user_pattern_index] = 0; - $parser .= " if ($_) {\n"; - $parser .= " \$user_pattern_totals[$user_pattern_index]++ if $_;\n"; - $parser .= " \$user_pattern_interval_count[$user_pattern_index][(\$m_hour*60 + \$m_min)/$hist_interval]++;\n" if ($hist_opt > 0); - $parser .= " }\n"; + $parser .= " if ($_) {\n"; + $parser .= " \$user_pattern_totals[$user_pattern_index]++;\n"; + $parser .= " \$user_pattern_interval_count[$user_pattern_index][(\$m_hour*60 + \$m_min)/$hist_interval]++;\n" if ($hist_opt > 0); + $parser .= " }\n"; $user_pattern_index++; }