Fixed udp_sendto() -> instead of .

This commit is contained in:
likewise 2004-03-11 19:52:47 +00:00
parent a916de3b66
commit fda71b1230

View File

@ -343,7 +343,7 @@ udp_sendto(struct udp_pcb *pcb, struct pbuf *p,
pcb_remote_ip.addr = pcb->remote_ip.addr;
pcb_remote_port = pcb->remote_port;
/* copy packet destination address to PCB remote peer address */
pcb->remote_ip.addr = dst_ip.addr;
pcb->remote_ip.addr = dst_ip->addr;
pcb->remote_port = dst_port;
/* send to the packet destination address */
err = udp_send(pcb, p);