fixed O_LARGEFILE not defined ci build error.

This commit is contained in:
geniusgogo 2023-02-25 16:20:25 +08:00 committed by guo
parent 53afeda538
commit a53367ac08
1 changed files with 3 additions and 0 deletions

View File

@ -226,12 +226,15 @@ static int inet_getsockname(int socket, struct sockaddr *name, socklen_t *namele
int inet_ioctlsocket(int socket, long cmd, void *arg)
{
int flags;
switch (cmd)
{
case F_GETFL:
case F_SETFL:
flags = (int)(size_t)arg;
#ifdef O_LARGEFILE
flags &= ~O_LARGEFILE;
#endif
return lwip_fcntl(socket, cmd, flags);
default: