mdns: fixed typos in the variable names and the comments

* Original commit: espressif/esp-idf@ecca39e19f
This commit is contained in:
David Cermak
2019-12-19 10:31:02 +01:00
committed by suren-gabrielyan-espressif
parent 6713ffedcc
commit b5e5a64e7f
3 changed files with 47 additions and 47 deletions

View File

@ -141,7 +141,7 @@ typedef enum {
typedef enum {
MDNS_ANSWER, MDNS_NS, MDNS_EXTRA
} mdns_parsed_recort_type_t;
} mdns_parsed_record_type_t;
typedef enum {
ACTION_SYSTEM_EVENT,
@ -210,7 +210,7 @@ typedef struct mdns_parsed_question_s {
typedef struct mdns_parsed_record_s {
struct mdns_parsed_record_s * next;
mdns_parsed_recort_type_t record_type;
mdns_parsed_record_type_t record_type;
uint16_t type;
uint16_t clas;
uint8_t flush;