From: Thomas Hochstein Date: Sat, 15 Feb 2014 16:47:01 +0000 (+0100) Subject: Fix handling of template files like upstream. X-Git-Url: https://code.th-h.de/?p=usenet%2Fusevote.git;a=commitdiff_plain;h=7a54626ef82c0d0e456160930b22303f63322651 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 --- 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);