From b62f443be57ea814e13767a4e1b03af2818755c0 Mon Sep 17 00:00:00 2001 From: sg Date: Fri, 6 Mar 2015 20:49:47 +0100 Subject: [PATCH] Fixed comment for NETIF_FLAG_UP after fixing bug #37068 --- src/include/lwip/netif.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/lwip/netif.h b/src/include/lwip/netif.h index 810ace43..fe71beb6 100644 --- a/src/include/lwip/netif.h +++ b/src/include/lwip/netif.h @@ -70,8 +70,8 @@ extern "C" { /** Whether the network interface is 'up'. This is * a software flag used to control whether this network * interface is enabled and processes traffic. - * It is set by the startup code (for static IP configuration) or - * by dhcp/autoip when an address has been assigned. + * It must be set by the startup code before this netif can be used + * (also for dhcp/autoip). */ #define NETIF_FLAG_UP 0x01U /** If set, the netif has broadcast capability.