0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-16 18:35:19 +00:00

IO: Fix missing return introduced in one of earlier patches

This commit is contained in:
Ondrej Zajicek 2024-07-30 16:42:32 +02:00
parent df22b3140c
commit c9836207f5

View File

@ -293,4 +293,6 @@ sk_set_udp6_no_csum_rx(sock *s)
if (setsockopt(s->fd, SOL_UDP, UDP_NO_CHECK6_RX, &y, sizeof(y)) < 0)
ERR("UDP_NO_CHECK6_RX");
return 0;
}