Ticket #79: avahi-example-fix.patch

File avahi-example-fix.patch, 500 bytes (added by tedp, 5 years ago)

A suggested fix

  • client-publish-service.c

     
    4444static void create_services(AvahiClient *c); 
    4545 
    4646static void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata) { 
    47     assert(g == group); 
     47    assert(g == group || group == NULL); 
    4848 
    4949    /* Called whenever the entry group state changes */ 
    5050