summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-09-09 15:54:39 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-09-09 15:54:39 +0000
commit089954045f4c5198afe80446b310b8bca4f2a5d4 (patch)
treed4f60537e54e8583737f30386fd2145aab0f5ed2 /perl-install
parent2810d51027507b7a792d81bfb4ba94cccb250b15 (diff)
downloaddrakx-backup-do-not-use-089954045f4c5198afe80446b310b8bca4f2a5d4.tar
drakx-backup-do-not-use-089954045f4c5198afe80446b310b8bca4f2a5d4.tar.gz
drakx-backup-do-not-use-089954045f4c5198afe80446b310b8bca4f2a5d4.tar.bz2
drakx-backup-do-not-use-089954045f4c5198afe80446b310b8bca4f2a5d4.tar.xz
drakx-backup-do-not-use-089954045f4c5198afe80446b310b8bca4f2a5d4.zip
fix #5448 (infinite entries)
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/logdrake2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/logdrake b/perl-install/standalone/logdrake
index 9963941b1..fc58aa5a3 100755
--- a/perl-install/standalone/logdrake
+++ b/perl-install/standalone/logdrake
@@ -409,7 +409,7 @@ my $initdir = "/etc/init.d";
webmin => N("Webmin Service"),
xinetd => N("Xinetd Service")
};
- my @installed_d;
+ my @installed_d = ();
foreach my $serv (keys %$service) {
-e "$initdir/$serv" && push @installed_d, $serv;
}