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

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

Diff for /src/sys/netinet/udp_usrreq.c between version 1.117 and 1.118

version 1.117, 2004/03/31 07:54:00 version 1.118, 2004/03/31 07:57:06
Line 433  udp6_input(mp, offp, proto)
Line 433  udp6_input(mp, offp, proto)
         if (uh->uh_sum == 0) {          if (uh->uh_sum == 0) {
                 udp6stat.udp6s_nosum++;                  udp6stat.udp6s_nosum++;
                 goto bad;                  goto bad;
         } else if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {          }
           if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {
                 udp6stat.udp6s_badsum++;                  udp6stat.udp6s_badsum++;
                 goto bad;                  goto bad;
         }          }

Legend:
Removed from v.1.117  
changed lines
  Added in v.1.118

CVSweb <webmaster@jp.NetBSD.org>