diff --git a/NEWS b/NEWS index 6712fdf37..ae1e4a3b4 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ ver 0.21.8 (not yet released) * output - httpd: add missing mutex lock +* fix Bonjour bug * fix build failure with GCC 9 ver 0.21.7 (2019/04/03) diff --git a/src/zeroconf/ZeroconfBonjour.cxx b/src/zeroconf/ZeroconfBonjour.cxx index 104116ebc..6c3b98240 100644 --- a/src/zeroconf/ZeroconfBonjour.cxx +++ b/src/zeroconf/ZeroconfBonjour.cxx @@ -50,7 +50,7 @@ protected: /* virtual methods from class SocketMonitor */ bool OnSocketReady(gcc_unused unsigned flags) noexcept override { DNSServiceProcessResult(service_ref); - return false; + return true; } };