Module Name:    src
Committed By:   dholland
Date:           Fri Jan  1 03:22:13 UTC 2010

Modified Files:
        src/sys/kern: kern_module.c

Log Message:
typo in comment


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 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.55 src/sys/kern/kern_module.c:1.56
--- src/sys/kern/kern_module.c:1.55	Tue Dec 29 17:49:21 2009
+++ src/sys/kern/kern_module.c	Fri Jan  1 03:22:13 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_module.c,v 1.55 2009/12/29 17:49:21 elad Exp $	*/
+/*	$NetBSD: kern_module.c,v 1.56 2010/01/01 03:22:13 dholland 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.55 2009/12/29 17:49:21 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.56 2010/01/01 03:22:13 dholland Exp $");
 
 #define _MODULE_INTERNAL
 
@@ -344,7 +344,7 @@
 		return EPERM;
 	}
 
-        /* Disallow path seperators and magic symlinks. */
+        /* Disallow path separators and magic symlinks. */
         if (strchr(filename, '/') != NULL || strchr(filename, '@') != NULL ||
             strchr(filename, '.') != NULL) {
         	return EPERM;

Reply via email to