net: netdev: Fix netdev_vioctl()

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
Masayuki Ishikawa 2020-05-09 09:11:13 +09:00 committed by Abdelatif Guettouche
parent 4301682fbc
commit 75a8883f07

View File

@ -1759,7 +1759,7 @@ int netdev_vioctl(int sockfd, int cmd, va_list ap)
{
FAR struct socket *psock = sockfd_socket(sockfd);
return psock_ioctl(psock, cmd, ap);
return psock_vioctl(psock, cmd, ap);
}
/****************************************************************************