]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
IO: Fix missing return introduced in one of earlier patches
authorOndrej Zajicek <santiago@crfreenet.org>
Tue, 30 Jul 2024 14:42:32 +0000 (16:42 +0200)
committerVojtech Vilimek <vojtech.vilimek@nic.cz>
Wed, 21 Aug 2024 08:40:58 +0000 (10:40 +0200)
sysdep/linux/sysio.h

index 5e71b535e20576a6e03dd6d6a8b2090f7c10e331..49495e13d3d6f2f580244db846220e6c73360ae7 100644 (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;
 }