Module Name: src
Committed By: macallan
Date: Wed Oct 5 14:17:42 UTC 2011
Modified Files:
src/sys/compat/netbsd32: netbsd32_ioctl.c
Log Message:
forgot SIOCG80211NWKEY32 when adding SIOCS80211NWKEY32
To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/compat/netbsd32/netbsd32_ioctl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/netbsd32/netbsd32_ioctl.c
diff -u src/sys/compat/netbsd32/netbsd32_ioctl.c:1.62 src/sys/compat/netbsd32/netbsd32_ioctl.c:1.63
--- src/sys/compat/netbsd32/netbsd32_ioctl.c:1.62 Wed Sep 28 01:46:39 2011
+++ src/sys/compat/netbsd32/netbsd32_ioctl.c Wed Oct 5 14:17:41 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_ioctl.c,v 1.62 2011/09/28 01:46:39 macallan Exp $ */
+/* $NetBSD: netbsd32_ioctl.c,v 1.63 2011/10/05 14:17:41 macallan Exp $ */
/*
* Copyright (c) 1998, 2001 Matthew R. Green
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_ioctl.c,v 1.62 2011/09/28 01:46:39 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_ioctl.c,v 1.63 2011/10/05 14:17:41 macallan Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -921,6 +921,8 @@ netbsd32_ioctl(struct lwp *l, const stru
case SIOCS80211NWKEY32:
IOCTL_STRUCT_CONV_TO(SIOCG80211NWKEY, ieee80211_nwkey);
+ case SIOCG80211NWKEY32:
+ IOCTL_STRUCT_CONV_TO(SIOCG80211NWKEY, ieee80211_nwkey);
case POWER_EVENT_RECVDICT32:
IOCTL_STRUCT_CONV_TO(POWER_EVENT_RECVDICT, plistref);