Skip to content

Commit b53d48d

Browse files
committed
Fix comments
1 parent 8a869a7 commit b53d48d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/FreeRTOS_DNS.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const IPv6_Address_t ipLLMNR_IP_ADDR_IPv6 =
7878
0x00, 0x03,
7979
}
8080
};
81-
#endif /* ( ( ipconfigUSE_LLMNR != 1 ) && ( ipconfigUSE_IPv6 != 0 ) ) */
81+
#endif /* ( ( ipconfigUSE_LLMNR != 0 ) && ( ipconfigUSE_IPv6 != 0 ) ) */
8282

8383
/** @brief The MAC address used for MDNS. */
8484
const MACAddress_t xMDNS_MacAddress = { { 0x01, 0x00, 0x5e, 0x00, 0x00, 0xfb } };
@@ -101,7 +101,7 @@ const IPv6_Address_t ipMDNS_IP_ADDR_IPv6 =
101101
0x00, 0xfb,
102102
}
103103
};
104-
#endif /* ( ( ipconfigUSE_MDNS != 1 ) && ( ipconfigUSE_IPv6 != 0 ) ) */
104+
#endif /* ( ( ipconfigUSE_MDNS != 0 ) && ( ipconfigUSE_IPv6 != 0 ) ) */
105105

106106
/* Exclude the entire file if DNS is not enabled. */
107107
#if ( ipconfigUSE_DNS != 0 )

0 commit comments

Comments
 (0)