From a039917951b44d3deaa16d69f8330072132fe440 Mon Sep 17 00:00:00 2001 From: Stefan Bethge Date: Thu, 14 Sep 2006 23:41:18 +0000 Subject: [PATCH] filter own service again, users should not see themselves in the roster --- src/common/zeroconf/zeroconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/zeroconf/zeroconf.py b/src/common/zeroconf/zeroconf.py index d1bdcd486..d33b4c424 100755 --- a/src/common/zeroconf/zeroconf.py +++ b/src/common/zeroconf/zeroconf.py @@ -54,8 +54,8 @@ class Zeroconf: print "Error:", str(err) def new_service_callback(self, interface, protocol, name, stype, domain, flags): - if True: - #XXX name != self.name + # we don't want to see ourselves in the list + if name != self.name: # print "Found service '%s' in domain '%s' on %i.%i." % (name, domain, interface, protocol) #synchronous resolving