Skip to content
Snippets Groups Projects
Commit f357ba6c authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix error just introduces into recvfrom. From Macs N.

parent b480e557
No related branches found
No related tags found
No related merge requests found
......@@ -424,10 +424,10 @@ static inline void recvfrom_udpreadahead(struct recvfrom_s *pstate)
if ( 0
#ifdef CONFIG_NET_IPv6
|| src_addr_size == 16
|| src_addr_size == sizeof(struct sockaddr_in6)
#endif
#ifdef CONFIG_NET_IPv4
|| src_addr_size == 4
|| src_addr_size == sizeof(struct sockaddr_in)
#endif
)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment