From ccfa1226518d95ed308974f6739b0f7233557327 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Tue, 17 Aug 2010 07:37:21 +0200 Subject: [PATCH] Fix: Harmonize DIR/TMP in uvvote.pl. There was a bug introduced in 4.0.9 by changing TMP to DIR just in one place. Signed-off-by: Thomas Hochstein --- uvvote.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uvvote.pl b/uvvote.pl index a86ef43..72a366e 100644 --- a/uvvote.pl +++ b/uvvote.pl @@ -122,9 +122,9 @@ if ($clean) { # normally unixtime is sufficient, if it is not unique append our PID my $ext = time; - opendir (TMP, $config{tmpdir}); + opendir (DIR, $config{tmpdir}); my @tmpfiles = readdir (DIR); - closedir (TMP); + closedir (DIR); opendir (FERTIG, $config{archivedir}); my @fertigfiles = readdir (FERTIG); closedir (FERTIG); -- 2.20.1