Blame SOURCES/tftp-hpa-5.2-pktinfo.patch

91c661
diff -up tftp-hpa-5.2/tftpd/recvfrom.c.test tftp-hpa-5.2/tftpd/recvfrom.c
91c661
--- tftp-hpa-5.2/tftpd/recvfrom.c.test	2011-12-11 23:13:52.000000000 +0100
91c661
+++ tftp-hpa-5.2/tftpd/recvfrom.c	2012-01-04 10:05:17.852042256 +0100
91c661
@@ -149,16 +149,16 @@ myrecvfrom(int s, void *buf, int len, un
91c661
 
91c661
     /* Try to enable getting the return address */
91c661
 #ifdef IP_RECVDSTADDR
91c661
-    if (from->sa_family == AF_INET)
91c661
+    if (from->sa_family == AF_INET || !from->sa_family)
91c661
         setsockopt(s, IPPROTO_IP, IP_RECVDSTADDR, &on, sizeof(on));
91c661
 #endif
91c661
 #ifdef IP_PKTINFO
91c661
-    if (from->sa_family == AF_INET)
91c661
+    if (from->sa_family == AF_INET || !from->sa_family)
91c661
         setsockopt(s, IPPROTO_IP, IP_PKTINFO, &on, sizeof(on));
91c661
 #endif
91c661
 #ifdef HAVE_IPV6
91c661
 #ifdef IPV6_RECVPKTINFO
91c661
-    if (from->sa_family == AF_INET6)
91c661
+    if (from->sa_family == AF_INET6 || !from->sa_family)
91c661
         setsockopt(s, IPPROTO_IPV6, IPV6_RECVPKTINFO, &on, sizeof(on));
91c661
 #endif
91c661
 #endif