Merged in iktek01/nuttx (pull request #284)

- fixed wrong assert on udp dgram send

Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
Pascal Speck 2017-03-21 13:33:12 +00:00 committed by Gregory Nutt
commit 1b266096c7
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ ssize_t psock_udp_send(FAR struct socket *psock, FAR const void *buf,
socklen_t tolen;
DEBUGASSERT(psock != NULL && psock->s_crefs > 0);
DEBUGASSERT(psock->s_type != SOCK_DGRAM);
DEBUGASSERT(psock->s_type == SOCK_DGRAM);
conn = (FAR struct udp_conn_s *)psock->s_conn;
DEBUGASSERT(conn);