Fix a error in some comments

This commit is contained in:
Gregory Nutt 2015-09-02 20:03:28 -06:00
parent 0bf6fa0b43
commit 36f4d0e9fc
2 changed files with 5 additions and 5 deletions

View File

@ -419,7 +419,7 @@ FAR struct tcp_conn_s *tcp_nextconn(FAR struct tcp_conn_s *conn);
*
* Returned Value:
* Zero (OK) is returned on success. A negated errno value is returned
* on failure. -ENODEV is the only expected error value.
* on failure. -ENETUNREACH is the only expected error value.
*
****************************************************************************/
@ -440,7 +440,7 @@ int tcp_local_ipv4_device(FAR struct tcp_conn_s *conn);
*
* Returned Value:
* Zero (OK) is returned on success. A negated errno value is returned
* on failure. -ENODEV is the only expected error value.
* on failure. -ENETUNREACH is the only expected error value.
*
****************************************************************************/

View File

@ -69,7 +69,7 @@
*
* Returned Value:
* Zero (OK) is returned on success. A negated errno value is returned
* on failure. -ENODEV is the only expected error value.
* on failure. -ENETUNREACH is the only expected error value.
*
****************************************************************************/
@ -190,7 +190,7 @@ static int tcp_find_ipv6_device(FAR struct tcp_conn_s *conn, const net_ipv6addr_
*
* Returned Value:
* Zero (OK) is returned on success. A negated errno value is returned
* on failure. -ENODEV is the only expected error value.
* on failure. -ENETUNREACH is the only expected error value.
*
****************************************************************************/
@ -218,7 +218,7 @@ int tcp_local_ipv4_device(FAR struct tcp_conn_s *conn)
*
* Returned Value:
* Zero (OK) is returned on success. A negated errno value is returned
* on failure. -ENODEV is the only expected error value.
* on failure. -ENETUNREACH is the only expected error value.
*
****************************************************************************/