- fixed wrong assert on udp dgram send

This commit is contained in:
Pascal Speck 2017-03-17 15:13:03 +01:00
parent 40433bd7f7
commit 8f91c73304
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);