Module Name: src
Committed By: pgoyette
Date: Sat Oct 16 18:09:02 UTC 2010
Modified Files:
src/sys/kern: kern_module.c
Log Message:
Remove double-inclusion of <sys/kauth.c>
To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/kern/kern_module.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/kern/kern_module.c
diff -u src/sys/kern/kern_module.c:1.72 src/sys/kern/kern_module.c:1.73
--- src/sys/kern/kern_module.c:1.72 Sat Aug 21 13:17:31 2010
+++ src/sys/kern/kern_module.c Sat Oct 16 18:09:02 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_module.c,v 1.72 2010/08/21 13:17:31 pgoyette Exp $ */
+/* $NetBSD: kern_module.c,v 1.73 2010/10/16 18:09:02 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.72 2010/08/21 13:17:31 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.73 2010/10/16 18:09:02 pgoyette Exp $");
#define _MODULE_INTERNAL
@@ -51,7 +51,6 @@
#include <sys/kobj.h>
#include <sys/kmem.h>
#include <sys/module.h>
-#include <sys/kauth.h>
#include <sys/kthread.h>
#include <sys/sysctl.h>
#include <sys/lock.h>