Removed unused netif flag for point to point connections

This commit is contained in:
Ivan Delamer
2015-02-19 16:19:29 -07:00
parent 02cf50063e
commit e312ebcb57
4 changed files with 4 additions and 5 deletions

View File

@@ -438,7 +438,7 @@ static err_t ppp_netif_init_cb(struct netif *netif) {
#if PPP_IPV6_SUPPORT
netif->output_ip6 = ppp_netif_output_ip6;
#endif /* PPP_IPV6_SUPPORT */
netif->flags = NETIF_FLAG_POINTTOPOINT | NETIF_FLAG_LINK_UP;
netif->flags = NETIF_FLAG_LINK_UP;
#if LWIP_NETIF_HOSTNAME
/* @todo: Initialize interface hostname */
/* netif_set_hostname(netif, "lwip"); */