networking: Correct a typo introduced with recent networking changes

This commit is contained in:
Gregory Nutt 2015-06-02 15:04:02 -06:00
parent 6d1ea9bb65
commit edbb5d0840

View File

@ -121,7 +121,7 @@ static uint16_t udp_poll_interrupt(FAR struct net_driver_s *dev, FAR void *conn,
if ((flags & NETDEV_DOWN) != 0)
{
eventset |= ((PULLHUP | POLLERR) & info->fds->events);
eventset |= ((POLLHUP | POLLERR) & info->fds->events);
}
/* Awaken the caller of poll() is requested event occurred. */