diff --git a/ChangeLog b/ChangeLog index 91dac8f4ab..027f3b01bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7559,4 +7559,6 @@ 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() 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). diff --git a/net/connect.c b/net/connect.c index 0f37010664..c7812c321f 100644 --- a/net/connect.c +++ b/net/connect.c @@ -306,7 +306,7 @@ static inline int psock_tcp_connect(FAR struct socket *psock, { /* Perform the uIP connection operation */ - ret = psock_tcp_connect(psock->s_conn, inaddr); + ret = tcp_connect(psock->s_conn, inaddr); } if (ret >= 0)