aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwsoltys <wiso@xbmc.org>2012-01-02 22:32:13 +0100
committerwsoltys <wiso@xbmc.org>2012-01-02 22:32:13 +0100
commita73db8efcda50084c694c9917a29ab1bad82668b (patch)
tree956dc81c598794e38a6316ef3a36a28289773e88
parentfd7e44a354810a3f875a6b075d3b5ea3ed259807 (diff)
[WIN32] added some more information to the toast and log info about missing bonjour service.
-rw-r--r--xbmc/network/windows/ZeroconfWIN.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/network/windows/ZeroconfWIN.cpp b/xbmc/network/windows/ZeroconfWIN.cpp
index b3fdf15209..7a39713077 100644
--- a/xbmc/network/windows/ZeroconfWIN.cpp
+++ b/xbmc/network/windows/ZeroconfWIN.cpp
@@ -77,8 +77,8 @@ bool CZeroconfWIN::doPublishService(const std::string& fcr_identifier,
CLog::Log(LOGERROR, "CZeroconfWIN::doPublishService CFNetServiceRegister returned (error = %ld)\n", (int) err);
if(err == kDNSServiceErr_ServiceNotRunning)
{
- CLog::Log(LOGERROR, "CZeroconfWIN: Apples Bonjour Service not installed?");
- CGUIDialogKaiToast::QueueNotification(CGUIDialogKaiToast::Error, "Failed to start zeroconf", "Is Apples Bonjour Service installed?", TOAST_DISPLAY_TIME, true);
+ CLog::Log(LOGERROR, "CZeroconfWIN: Zeroconf can't be started probably because Apple's Bonjour Service isn't installed. You can get it by either installing Itunes or Apple's Bonjour Print Service for Windows (http://support.apple.com/kb/DL999)");
+ CGUIDialogKaiToast::QueueNotification(CGUIDialogKaiToast::Error, "Failed to start zeroconf", "Is Apple's Bonjour Service installed? See log for more info.", 10000, true);
}
}
else