git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@1630 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2012-06-20 07:18:13 +00:00
parent 2dda58838d
commit 1f5fbc1752
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ package main;
use strict;
use warnings;
use POSIX;
uset HttpUtils;
use HttpUtils;
sub dayofyear {
my ($day1,$month,$year)=@_;

View File

@@ -89,7 +89,7 @@ sub
GetHttpFile($$)
{
my ($host,$port) = @_;
return GetFileFromURL("http://$host$file);
return GetFileFromURL("http://$host$file");
}
1;