Fix sending of packets with single updates
This commit is contained in:
parent
8cc84b1edb
commit
5daeb1fc6f
1 changed files with 4 additions and 4 deletions
|
@ -213,11 +213,11 @@ void ffd_send_update(ffd_iface_t *iface, ffd_neigh_t *neigh, ffd_announce_t *ann
|
|||
packet->len = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (packet->len) {
|
||||
if (!send_eth(addr, iface->ifindex, packet, sizeof(ffd_packet_t)+ntohs(packet->len)))
|
||||
fprintf(stderr, "send_eth: %m\n");
|
||||
}
|
||||
if (packet->len) {
|
||||
if (!send_eth(addr, iface->ifindex, packet, sizeof(ffd_packet_t)+ntohs(packet->len)))
|
||||
fprintf(stderr, "send_eth: %m\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue