From 993942885463411d3c928389420fac12d596ed1c Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 2 Jul 2010 16:04:36 +0100 Subject: [PATCH] Use iconv character-set name "UTF-8" rather than "UTF8" as the latter is for some reason not supported by the iconv package in the Macports collection. --- lib/ZOOM/IRSpy/Test/Ping.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ZOOM/IRSpy/Test/Ping.pm b/lib/ZOOM/IRSpy/Test/Ping.pm index 31b7f4d..2a97594 100644 --- a/lib/ZOOM/IRSpy/Test/Ping.pm +++ b/lib/ZOOM/IRSpy/Test/Ping.pm @@ -13,7 +13,7 @@ our @ISA = qw(ZOOM::IRSpy::Test); use ZOOM::IRSpy::Utils qw(isodate); use Text::Iconv; -my $conv = new Text::Iconv("LATIN1", "UTF8"); +my $conv = new Text::Iconv("LATIN1", "UTF-8"); sub start { -- 1.7.10.4