From 36be00b3072fdd92874f04c22f6d843ca530f68b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 18 Feb 2013 21:02:50 +0100 Subject: [PATCH] xbmc: fix connection check patch Signed-off-by: Stephan Raue --- .../xbmc/patches/xbmc-457-fix_connection_check-0.1.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch b/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch index f7c4f4a98f..e2ff800e71 100644 --- a/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch +++ b/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch @@ -6,10 +6,10 @@ diff -Naur a/xbmc/filesystem/CurlFile.cpp b/xbmc/filesystem/CurlFile.cpp bool CFileCurl::IsInternet(bool checkDNS /* = true */) { - CStdString strURL = "http://www.google.com"; -+ CStdString strURL = "http://openelec.tv"; ++ CStdString strURL = "http://releases.openelec.tv"; if (!checkDNS) - strURL = "http://74.125.19.103"; // www.google.com ip -+ strURL = "http://212.101.13.10"; // openelec.tv ip ++ strURL = "http://212.101.13.11"; // openelec.tv ip bool found = Exists(strURL); Close();