[PATCH] IPv6: Garbage scope-id in MSG_ERRQUEUE message
From: YOSHIFUJI Hideaki / 吉藤英明 <hidden>
Date: 2002-10-26 02:22:17
Hi, This patch clears sin6_scope_id in sockaddr_in6 in MSG_ERRQUEUE message. Without this we would see garbage there. This patch is against linux-2.4.20-pre11. Thanks in advance. ------------------------------------------------------------------- Patch-Name: Garbage scope-id in MSG_ERRQUEUE message Patch-Id: FIX_2_4_20_pre11_ICMP_ERROR-20021026 Patch-Author: YOSHIFUJI Hideaki / USAGI Project [off-list ref] Credit: YOSHIFUJI Hideaki / USAGI Project [off-list ref] ------------------------------------------------------------------- Index: net/ipv6/datagram.c =================================================================== RCS file: /cvsroot/usagi/usagi-backport/linux24/net/ipv6/datagram.c,v retrieving revision 1.1.1.2 retrieving revision 1.1.1.2.22.1 diff -u -r1.1.1.2 -r1.1.1.2.22.1
--- net/ipv6/datagram.c 9 Oct 2002 01:35:53 -0000 1.1.1.2
+++ net/ipv6/datagram.c 25 Oct 2002 16:55:56 -0000 1.1.1.2.22.1@@ -158,6 +158,7 @@ if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) { sin->sin6_family = AF_INET6; sin->sin6_flowinfo = 0; + sin->sin6_scope_id = 0; if (serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6) { memcpy(&sin->sin6_addr, &skb->nh.ipv6h->saddr, 16); if (sk->net_pinfo.af_inet6.rxopt.all)