Fixed comment for NETIF_FLAG_UP after fixing bug #37068

This commit is contained in:
sg 2015-03-06 20:49:47 +01:00
parent 553c4203ab
commit b62f443be5

View File

@ -70,8 +70,8 @@ extern "C" {
/** Whether the network interface is 'up'. This is /** Whether the network interface is 'up'. This is
* a software flag used to control whether this network * a software flag used to control whether this network
* interface is enabled and processes traffic. * interface is enabled and processes traffic.
* It is set by the startup code (for static IP configuration) or * It must be set by the startup code before this netif can be used
* by dhcp/autoip when an address has been assigned. * (also for dhcp/autoip).
*/ */
#define NETIF_FLAG_UP 0x01U #define NETIF_FLAG_UP 0x01U
/** If set, the netif has broadcast capability. /** If set, the netif has broadcast capability.