From c440114d142dc138aa196968695b6ecad2cdeb59 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Fri, 15 Mar 2019 16:02:13 +0100 Subject: [PATCH] mdns: update mdns_out_question_s to be in line with mdns_parsed_question_s struct Closes https://github.com/espressif/esp-idf/issues/1568 * Original commit: espressif/esp-idf@eddd5c4f2c686d9a1d6d3258569cc33752e78880 --- components/mdns/private_include/mdns_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mdns/private_include/mdns_private.h b/components/mdns/private_include/mdns_private.h index a5b0747aa..e3becf28f 100644 --- a/components/mdns/private_include/mdns_private.h +++ b/components/mdns/private_include/mdns_private.h @@ -260,7 +260,7 @@ typedef struct mdns_srv_item_s { typedef struct mdns_out_question_s { struct mdns_out_question_s * next; uint16_t type; - uint8_t unicast; + bool unicast; const char * host; const char * service; const char * proto;