From 52449e12c08cf639484cf9b2942484d0f6f9a0e8 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sun, 14 Aug 2016 16:56:34 +0200 Subject: [PATCH] Forgot to save before committing... --- src/apps/mdns/mdns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/mdns/mdns.c b/src/apps/mdns/mdns.c index 935f0cd6..1481c743 100644 --- a/src/apps/mdns/mdns.c +++ b/src/apps/mdns/mdns.c @@ -1852,7 +1852,7 @@ mdns_resp_init(void) mdns_pcb = udp_new_ip_type(IPADDR_TYPE_ANY); LWIP_ASSERT("Failed to allocate pcb", mdns_pcb != NULL); udp_set_multicast_ttl(mdns_pcb, MDNS_TTL); - res = udp_bind(mdns_pcb, IP_ADDR_ANY, MDNS_PORT); + res = udp_bind(mdns_pcb, IP_ANY_TYPE, MDNS_PORT); LWIP_ASSERT("Failed to bind pcb", res == ERR_OK); udp_recv(mdns_pcb, mdns_recv, NULL); }