Module Name:    src
Committed By:   macallan
Date:           Thu Oct  6 03:19:32 UTC 2011

Modified Files:
        src/sys/compat/netbsd32: netbsd32_ioctl.c

Log Message:
fix pasto, now SIOCS80211NWKEY and SIOCG80211NWKEY actually work


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 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.63 src/sys/compat/netbsd32/netbsd32_ioctl.c:1.64
--- src/sys/compat/netbsd32/netbsd32_ioctl.c:1.63	Wed Oct  5 14:17:41 2011
+++ src/sys/compat/netbsd32/netbsd32_ioctl.c	Thu Oct  6 03:19:32 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: netbsd32_ioctl.c,v 1.63 2011/10/05 14:17:41 macallan Exp $	*/
+/*	$NetBSD: netbsd32_ioctl.c,v 1.64 2011/10/06 03:19:32 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.63 2011/10/05 14:17:41 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_ioctl.c,v 1.64 2011/10/06 03:19:32 macallan Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -920,7 +920,7 @@ netbsd32_ioctl(struct lwp *l, const stru
 		IOCTL_STRUCT_CONV_TO(WSDISPLAYIO_SCURSOR, wsdisplay_cursor);
 
 	case SIOCS80211NWKEY32:
-		IOCTL_STRUCT_CONV_TO(SIOCG80211NWKEY, ieee80211_nwkey);
+		IOCTL_STRUCT_CONV_TO(SIOCS80211NWKEY, ieee80211_nwkey);
 	case SIOCG80211NWKEY32:
 		IOCTL_STRUCT_CONV_TO(SIOCG80211NWKEY, ieee80211_nwkey);
 

Reply via email to