diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-07-05 17:29:21 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-07-05 17:29:21 +0000 |
commit | dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c (patch) | |
tree | f9cff13bc0a0417e21edc91d36fd1e466bfd422f | |
parent | 37a325a1b59cfde1130994defa843afce425b095 (diff) | |
download | iurt-dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c.tar iurt-dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c.tar.gz iurt-dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c.tar.bz2 iurt-dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c.tar.xz iurt-dfa1d1b903a305a7d8a5d4a2d1b64e6e5f98aa9c.zip |
fix error introduced in previous commit, noticed by pterjan
-rwxr-xr-x | ulri | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ $run{program_name} = $program_name; my $LOG; if (!$ENV{'ULRI_LOG_FILE'} || !open($LOG, '>>', $ENV{'ULRI_LOG_FILE'})) { - open(my $LOG, ">&STDERR"); + open($LOG, ">&STDERR"); } plog_init($program_name, $LOG, 7, 1); |