From fe7fba76748f9c3d06884d2446b8c7784df79b0c Mon Sep 17 00:00:00 2001 From: Hauke Petersen <hauke.petersen@fu-berlin.de> Date: Thu, 6 Dec 2018 17:16:23 +0100 Subject: [PATCH] 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 --- sys/include/net/gnrc/netif/internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/net/gnrc/netif/internal.h b/sys/include/net/gnrc/netif/internal.h index 8dececd89b..8ce4c4ff6d 100644 --- a/sys/include/net/gnrc/netif/internal.h +++ b/sys/include/net/gnrc/netif/internal.h @@ -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 -- GitLab