From: Ondrej Zajicek Date: Tue, 30 Jul 2024 14:42:32 +0000 (+0200) Subject: IO: Fix missing return introduced in one of earlier patches X-Git-Tag: v2.16~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9836207;p=thirdparty%2Fbird.git IO: Fix missing return introduced in one of earlier patches --- diff --git a/sysdep/linux/sysio.h b/sysdep/linux/sysio.h index 5e71b535e..49495e13d 100644 --- a/sysdep/linux/sysio.h +++ b/sysdep/linux/sysio.h @@ -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; }