* sockopt.c: (getsockopt_ipv4_ifindex) no ifindex should be 0, not
-1.
+2004-10-13 Paul Jakma <paul@dishone.st>
+
+ * sockopt.c: (getsockopt_ipv4_ifindex) no ifindex should be 0, not
+ -1.
+
2004-10-19 Hasso Tepper <hasso at quagga.net>
* version.h.in: Define copyright string QUAGGA_COPYRIGHT.
#else /* neither IP_PKTINFO nor IP_RECVIF, broken */
#warning "getsockopt_ipv4_pktinfo_ifindex: dont have PKTINFO or RECVIF"
-#warning "things will be broken on this platform!"
+#warning "things probably will be broken on this platform!"
/* XXX why not -1 - this is a failure condition. */
- ifindex = -1;
+ ifindex = 0;
#endif /* IP_PKTINFO */
return ifindex;
}