diff options
-rw-r--r-- | avahi-core/announce.c | 3 | ||||
-rw-r--r-- | avahi-core/entry.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/avahi-core/announce.c b/avahi-core/announce.c index a77fbb6..6a68a7a 100644 --- a/avahi-core/announce.c +++ b/avahi-core/announce.c @@ -515,6 +515,9 @@ void avahi_goodbye_entry(AvahiServer *s, AvahiEntry *e, int send_goodbye, int re assert(s); assert(e); + /* tracing message for wide-area pub development */ + printf("*** record of type %d named %s observed at exitpoint\n", e->record->key->type, e->record->key->name); + if (send_goodbye) if (!e->dead) avahi_interface_monitor_walk(s->monitor, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, send_goodbye_callback, e); diff --git a/avahi-core/entry.c b/avahi-core/entry.c index d3071fe..dc19bc1 100644 --- a/avahi-core/entry.c +++ b/avahi-core/entry.c @@ -224,7 +224,6 @@ static AvahiEntry * server_add_internal( /* tracing message for wide-area pub development */ printf("*** record of type %d named %s observed at entrypoint\n", r->key->type, r->key->name); - if (flags & AVAHI_PUBLISH_UPDATE) { AvahiRecord *old_record; int is_first = 1; |