summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-08-16 23:42:22 +0300
committerTor Lillqvist <tlillqvist@suse.com>2013-08-17 01:52:49 +0300
commitddba5a4360e88ac4f6f848ac74ab1f350b9b7d5f (patch)
tree638f9543c7ee8482b6987f6e7d00853314f93b45 /sd
parenta0161828b8ea4d68fb34f02656b9a4f8604129ab (diff)
SAL_INFO is not available here
Change-Id: Ic40cb29d9ade32690903bfa0f3993782711cc53f
Diffstat (limited to 'sd')
-rwxr-xr-xsd/source/ui/remotecontrol/WINNetworkService.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/sd/source/ui/remotecontrol/WINNetworkService.cxx b/sd/source/ui/remotecontrol/WINNetworkService.cxx
index 6e35f0528300..144b33aee7d2 100755
--- a/sd/source/ui/remotecontrol/WINNetworkService.cxx
+++ b/sd/source/ui/remotecontrol/WINNetworkService.cxx
@@ -7,13 +7,10 @@ void sd::WINNetworkService::setup()
{
DNSServiceErrorType err = DNSServiceRegister(&client, 0, 0, NULL, kREG_TYPE, "local", NULL, 1599, 1, "", NULL, this );
- if ( err == 0 ) {
- SAL_INFO("sd", "Windows bonjour service setup");
- } // Fail silently otherwise
+ // Fail silently
}
void sd::WINNetworkService::clear()
{
DNSServiceRefDeallocate(client);
- SAL_INFO("sd", "Windows mDNSResponder removed");
-} \ No newline at end of file
+}