Update to previous change from Max Holtzberg

This commit is contained in:
Gregory Nutt 2013-09-06 09:34:14 -06:00
parent deaa35987e
commit 209946a055
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ NETDEV_CSRCS = netdev_register.c netdev_ioctl.c net_poll.c netdev_txnotify.c \
netdev_foreach.c netdev_unregister.c netdev_sem.c
ifeq ($(CONFIG_NET_RXAVAIL),y)
NETDEV_CSRCS +=netdev_rxnotify.c
NETDEV_CSRCS += netdev_rxnotify.c
endif
include uip/Make.defs

View File

@ -138,7 +138,7 @@ int net_startmonitor(FAR struct socket *psock)
* the monitoring callback.)
*/
if (conn->tcpstateflags == UIP_CLOSED)
if ((conn->tcpstateflags & UIP_CLOSED) != 0)
{
connection_event(conn, UIP_CLOSE);
}