From f31235c824937c3254fbb9046787de467cb50173 Mon Sep 17 00:00:00 2001 From: MurphyZhao Date: Wed, 13 Jun 2018 13:56:38 +0800 Subject: [PATCH] [components/dfs] Fix inconsistent structure of lwip_sock structure, adaptation lwip202 version Signed-off-by: MurphyZhao --- components/dfs/filesystems/net/socket/sys/socket.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/dfs/filesystems/net/socket/sys/socket.h b/components/dfs/filesystems/net/socket/sys/socket.h index 89e0c5bfa5..4ed96fe222 100644 --- a/components/dfs/filesystems/net/socket/sys/socket.h +++ b/components/dfs/filesystems/net/socket/sys/socket.h @@ -76,7 +76,11 @@ struct lwip_sock { /** error happened for this socket, set by event_callback(), tested by select */ u16_t errevent; /** last error that occurred on this socket */ +#if LWIP_VERSION < 0x2000000 int err; +#else + u8_t err; +#endif /** counter of how many threads are waiting for this socket using select */ SELWAIT_T select_waiting;