Skip to content
Snippets Groups Projects
Commit fe7fba76 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

gnrc/netif/internal: fix copy-paste error

the names for iid_from_addr and iid_to_addr functions in the
else-block were switched around, so this fixes that
parent 9bb458da
No related branches found
No related tags found
No related merge requests found
......@@ -467,8 +467,8 @@ int gnrc_netif_ipv6_iid_from_addr(const gnrc_netif_t *netif,
int gnrc_netif_ipv6_iid_to_addr(const gnrc_netif_t *netif, const eui64_t *iid,
uint8_t *addr);
#else /* defined(MODULE_GNRC_IPV6) || defined(DOXYGEN) */
#define gnrc_netif_ipv6_iid_to_addr(netif, addr, addr_len, iid) (-ENOTSUP)
#define gnrc_netif_ipv6_iid_from_addr(netif, iid, addr) (-ENOTSUP)
#define gnrc_netif_ipv6_iid_from_addr(netif, addr, addr_len, iid) (-ENOTSUP)
#define gnrc_netif_ipv6_iid_to_addr(netif, iid, addr) (-ENOTSUP)
#endif /* defined(MODULE_GNRC_IPV6) || defined(DOXYGEN) */
#ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment