mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
NET: Another fix for recently introduced networking errors
This commit is contained in:
@@ -7559,4 +7559,6 @@
|
|||||||
that will load a bootloader into AT25 Serial FLASH (2014-6-28).
|
that will load a bootloader into AT25 Serial FLASH (2014-6-28).
|
||||||
* libc/math: Change double_t to double in rint(). Add rintf() and rintl()
|
* libc/math: Change double_t to double in rint(). Add rintf() and rintl()
|
||||||
while we are at it (2014-6-28).
|
while we are at it (2014-6-28).
|
||||||
|
* net/iob: Fix some errors in recent network I/O buffering when stack runs
|
||||||
|
from interrupt level. Reported by Manuel Stühn (2014-6-28).
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -306,7 +306,7 @@ static inline int psock_tcp_connect(FAR struct socket *psock,
|
|||||||
{
|
{
|
||||||
/* Perform the uIP connection operation */
|
/* Perform the uIP connection operation */
|
||||||
|
|
||||||
ret = psock_tcp_connect(psock->s_conn, inaddr);
|
ret = tcp_connect(psock->s_conn, inaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret >= 0)
|
if (ret >= 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user