summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-28 11:41:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-28 11:41:06 -0600
commit061de44b774696ba47b903bfaa52599103348a74 (patch)
treee60fce80257c8430e02a9d8f17c57c09a08e6a35
parent847af22cb8a8eae0636110b475af6b78eaf49a06 (diff)
downloadnuttx-061de44b774696ba47b903bfaa52599103348a74.tar.gz
nuttx-061de44b774696ba47b903bfaa52599103348a74.tar.bz2
nuttx-061de44b774696ba47b903bfaa52599103348a74.zip
NET: Another fix for recently introduced networking errors
-rw-r--r--nuttx/ChangeLog2
-rw-r--r--nuttx/net/connect.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 91dac8f4a..027f3b01b 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/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/nuttx/net/connect.c b/nuttx/net/connect.c
index 0f3701066..c7812c321 100644
--- a/nuttx/net/connect.c
+++ b/nuttx/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)