cetic / 6lbr

A deployment-ready 6LoWPAN Border Router solution based on Contiki
github.com/cetic/6lbr/wiki
Other
337 stars 195 forks source link

Bug in contiki-cooja-main.c in contiki-merge branch #189

Closed manuwsn closed 8 years ago

manuwsn commented 8 years ago

In the contiki_init() :

if NETSTACK_CONF_WITH_IPV6

/* IPv6 CONFIGURATION */ { ...

if !UIP_DS6_NO_STATIC_ADDRESS

... }

endif

endif /* NETSTACK_CONF_WITH_IPV6 */

Should be :

if NETSTACK_CONF_WITH_IPV6

/* IPv6 CONFIGURATION */ { ...

if !UIP_DS6_NO_STATIC_ADDRESS

...

endif

}

endif /* NETSTACK_CONF_WITH_IPV6 */

laurentderu commented 8 years ago

Thanks for reporting, it's now fixed in the latest version of the branch.