NET: Another fix for recently introduced networking errors

This commit is contained in:
Gregory Nutt
2014-06-28 11:41:06 -06:00
parent 3b81e58047
commit c4fef5d5ff
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -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
View File
@@ -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)