Module Name:    src
Committed By:   wiz
Date:           Thu Mar 22 12:59:33 UTC 2012

Modified Files:
        src/sys/net: if_bridge.c

Log Message:
Fix typo in kauth name. From PR 46234 by Matthew Mondor.
Tested by Geoff Adams and Ryo ONODERA.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/sys/net/if_bridge.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/net/if_bridge.c
diff -u src/sys/net/if_bridge.c:1.75 src/sys/net/if_bridge.c:1.76
--- src/sys/net/if_bridge.c:1.75	Tue Mar 13 18:40:58 2012
+++ src/sys/net/if_bridge.c	Thu Mar 22 12:59:33 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_bridge.c,v 1.75 2012/03/13 18:40:58 elad Exp $	*/
+/*	$NetBSD: if_bridge.c,v 1.76 2012/03/22 12:59:33 wiz Exp $	*/
 
 /*
  * Copyright 2001 Wasabi Systems, Inc.
@@ -80,7 +80,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.75 2012/03/13 18:40:58 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.76 2012/03/22 12:59:33 wiz Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_bridge_ipf.h"
@@ -467,7 +467,7 @@ bridge_ioctl(struct ifnet *ifp, u_long c
 		    KAUTH_NETWORK_INTERFACE_BRIDGE,
 		    cmd == SIOCGDRVSPEC ?
 		     KAUTH_REQ_NETWORK_INTERFACE_BRIDGE_GETPRIV :
-		     KAUTH_REQ_NETWORK_INTERFACE_SETPRIV,
+		     KAUTH_REQ_NETWORK_INTERFACE_BRIDGE_SETPRIV,
 		     ifd, NULL, NULL);
 		if (error)
 			return (error);

Reply via email to