Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 178709 | Differences between
and this patch

Collapse All | Expand All

(-)afterglow.orig/src/perl/graph/afterglow.pl (-2 / +2 lines)
Lines 142-149 Link Here
142
# Program version
142
# Program version
143
my $version = "1.5.9";
143
my $version = "1.5.9";
144
144
145
use Text::CSV;
145
use Text::CSV_XS;
146
my $csvline = Text::CSV->new();
146
my $csvline = Text::CSV_XS->new();
147
147
148
# Whether or not verbose mode is enabled.
148
# Whether or not verbose mode is enabled.
149
# A value of '1' indicates that verbose mode is enabled.
149
# A value of '1' indicates that verbose mode is enabled.
(-)afterglow.orig/src/perl/loganalysis/anonymize.pl (-2 / +2 lines)
Lines 46-53 use strict; Link Here
46
# Program version
46
# Program version
47
my $version = "1.1";
47
my $version = "1.1";
48
48
49
use Text::CSV;
49
use Text::CSV_XS;
50
my $csvline = Text::CSV->new();
50
my $csvline = Text::CSV_XS->new();
51
51
52
my $prefix = "";
52
my $prefix = "";
53
my $column = 0;
53
my $column = 0;

Return to bug 178709