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

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

Diff for /src/sys/net/if_ethersubr.c between version 1.207 and 1.208

version 1.207, 2015/04/13 22:46:57 version 1.208, 2015/05/20 09:17:18
Line 255  ether_output(struct ifnet * const ifp0, 
Line 255  ether_output(struct ifnet * const ifp0, 
                         } else                          } else
                                 senderr(EHOSTUNREACH);                                  senderr(EHOSTUNREACH);
                 }                  }
                 if ((rt->rt_flags & RTF_GATEWAY) && dst->sa_family != AF_NS) {                  if ((rt->rt_flags & RTF_GATEWAY)) {
                         if (rt->rt_gwroute == NULL)                          if (rt->rt_gwroute == NULL)
                                 goto lookup;                                  goto lookup;
                         if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {                          if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {

Legend:
Removed from v.1.207  
changed lines
  Added in v.1.208

CVSweb <webmaster@jp.NetBSD.org>