1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

socket: avoid duplicate variable shadowing

This commit is contained in:
Steffen Vogel 2019-01-21 23:00:43 +01:00
parent baa94bcf8a
commit ef2eb6a2fa

View file

@ -64,9 +64,9 @@ int socket_type_start(struct super_node *sn)
continue;
/* Determine outgoing interface */
struct interface *i = if_get_egress((struct sockaddr *) &s->out.saddr, interfaces);
struct interface *j = if_get_egress((struct sockaddr *) &s->out.saddr, interfaces);
vlist_push(&i->nodes, n);
vlist_push(&j->nodes, n);
}
#endif /* WITH_NETEM */