diff --git a/net/Makefile b/net/Makefile index 5c4812b9c59..46ad34afa03 100644 --- a/net/Makefile +++ b/net/Makefile @@ -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 diff --git a/net/net_monitor.c b/net/net_monitor.c index 12907fa42df..cf4ffd73f41 100644 --- a/net/net_monitor.c +++ b/net/net_monitor.c @@ -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); }