Typo introduced in previous check-in
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1604 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
76ab89bd38
commit
e1502fe8c1
@ -106,7 +106,7 @@ void uip_udpinput(struct uip_driver_s *dev)
|
||||
dev->d_len -= UIP_IPUDPH_LEN;
|
||||
#ifdef CONFIG_NET_UDP_CHECKSUMS
|
||||
dev->d_appdata = &dev->d_buf[UIP_LLH_LEN + UIP_IPUDPH_LEN];
|
||||
if (pudpbuf->udpchksum != 0 && uip_udpchksum(dev) != 0xffff)
|
||||
if (pbuf->udpchksum != 0 && uip_udpchksum(dev) != 0xffff)
|
||||
{
|
||||
#ifdef CONFIG_NET_STATISTICS
|
||||
uip_stat.udp.drop++;
|
||||
@ -120,7 +120,7 @@ void uip_udpinput(struct uip_driver_s *dev)
|
||||
{
|
||||
/* Demultiplex this UDP packet between the UDP "connections". */
|
||||
|
||||
conn = uip_udpactive(pudpbuf);
|
||||
conn = uip_udpactive(pbuf);
|
||||
if (conn)
|
||||
{
|
||||
/* Setup for the application callback */
|
||||
|
Loading…
Reference in New Issue
Block a user