From 7a54626ef82c0d0e456160930b22303f63322651 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sat, 15 Feb 2014 17:47:01 +0100 Subject: [PATCH] Fix handling of template files like upstream. In ccfa1226518d95ed308974f6739b0f7233557327 we replaced TMP by DIR to harmonize its usage. Upstream went the other way round and changed DIR to TMP. We switch now to be compatible to upstream. Picked from upstream. Signed-off-by: Thomas Hochstein --- uvvote.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uvvote.pl b/uvvote.pl index c0c3712..8e8fb68 100755 --- 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 (DIR, $config{tmpdir}); - my @tmpfiles = readdir (DIR); - closedir (DIR); + opendir (TMP, $config{tmpdir}); + my @tmpfiles = readdir (TMP); + closedir (TMP); opendir (FERTIG, $config{archivedir}); my @fertigfiles = readdir (FERTIG); closedir (FERTIG); -- 2.20.1