am 96d6901d: Fix default_pdp_interface pointer reference
* commit '96d6901de7452ed1f0f11e264e44519f81d72aa2':
Fix default_pdp_interface pointer reference
diff --git a/clatd.c b/clatd.c
index faeb679..d57ea59 100644
--- a/clatd.c
+++ b/clatd.c
@@ -75,7 +75,7 @@
struct sockaddr_ll sll = {
.sll_family = AF_PACKET,
.sll_protocol = htons(ETH_P_IPV6),
- .sll_ifindex = if_nametoindex((char *) &Global_Clatd_Config.default_pdp_interface),
+ .sll_ifindex = if_nametoindex(Global_Clatd_Config.default_pdp_interface),
.sll_pkttype = PACKET_OTHERHOST, // The 464xlat IPv6 address is not assigned to the kernel.
};
if (bind(sock, (struct sockaddr *) &sll, sizeof(sll))) {