[BACK]Return to ip6_output.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / netinet6

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/netinet6/ip6_output.c between version 1.164 and 1.165

version 1.164, 2015/04/24 08:53:06 version 1.165, 2015/04/27 10:14:44
Line 2333  ip6_get_membership(const struct sockopt 
Line 2333  ip6_get_membership(const struct sockopt 
                         sockaddr_in_init(&u.dst4, ia4, 0);                          sockaddr_in_init(&u.dst4, ia4, 0);
                 else                  else
                         sockaddr_in6_init(&u.dst6, ia, 0, 0, 0);                          sockaddr_in6_init(&u.dst6, ia, 0, 0, 0);
                 rtcache_setdst(&ro, &u.dst);                  error = rtcache_setdst(&ro, &u.dst);
                   if (error != 0)
                           return error;
                 *ifp = (rt = rtcache_init(&ro)) != NULL ? rt->rt_ifp : NULL;                  *ifp = (rt = rtcache_init(&ro)) != NULL ? rt->rt_ifp : NULL;
                 rtcache_free(&ro);                  rtcache_free(&ro);
         } else {          } else {

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165

CVSweb <webmaster@jp.NetBSD.org>