Fix sending of packets with single updates

This commit is contained in:
Matthias Schiffer 2012-10-07 04:16:44 +02:00
parent 8cc84b1edb
commit 5daeb1fc6f

View file

@ -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");
}
}