summaryrefslogtreecommitdiff
path: root/nuttx/net/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/send.c')
-rw-r--r--nuttx/net/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/net/send.c b/nuttx/net/send.c
index ffa689996..0b2f3739c 100644
--- a/nuttx/net/send.c
+++ b/nuttx/net/send.c
@@ -415,7 +415,7 @@ ssize_t send(int sockfd, const void *buf, size_t len, int flags)
goto errout;
}
- /* If this is a connected socket, then return ENOTCONN */
+ /* If this is an un-connected socket, then return ENOTCONN */
if (psock->s_type != SOCK_STREAM || !_SS_ISCONNECTED(psock->s_flags))
{