diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-01-21 13:47:46 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-01-21 13:47:46 +0000 |
commit | c6bb08faac411e7f587547acd67925cd531a9c7e (patch) | |
tree | 0b931f7b07a639ae579136d093446a586767162b /sys/compat/linux/linux_socket.c | |
parent | 67c48e8b97709d1585794aa4ffa565d9d3605b9e (diff) |
Ubreak the tree by using "struct ifreq" instead of "struct linux_ifreq".
Diffstat (limited to 'sys/compat/linux/linux_socket.c')
-rw-r--r-- | sys/compat/linux/linux_socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index 229ece21171..4adc69e31c3 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_socket.c,v 1.58 2015/01/21 02:23:14 guenther Exp $ */ +/* $OpenBSD: linux_socket.c,v 1.59 2015/01/21 13:47:45 mpi Exp $ */ /* $NetBSD: linux_socket.c,v 1.14 1996/04/05 00:01:50 christos Exp $ */ /* @@ -1492,7 +1492,7 @@ out: error = sys_ioctl(p, &ia, retval); if (error == 0) { - struct linux_ifreq *ifr = data; + struct ifreq *ifr = data; switch (com) { case LINUX_SIOCGIFADDR: |