svn commit: r205012 - head/sys/kern

John Baldwin jhb at FreeBSD.org
Thu Mar 11 13:16:06 UTC 2010


Author: jhb
Date: Thu Mar 11 13:16:06 2010
New Revision: 205012
URL: http://svn.freebsd.org/changeset/base/205012

Log:
  Fix a comment nit.
  
  Submitted by:	Alexander Best

Modified:
  head/sys/kern/vfs_syscalls.c

Modified: head/sys/kern/vfs_syscalls.c
==============================================================================
--- head/sys/kern/vfs_syscalls.c	Thu Mar 11 12:18:52 2010	(r205011)
+++ head/sys/kern/vfs_syscalls.c	Thu Mar 11 13:16:06 2010	(r205012)
@@ -1060,8 +1060,8 @@ kern_openat(struct thread *td, int fd, c
 	AUDIT_ARG_MODE(mode);
 	/* XXX: audit dirfd */
 	/*
-	 * Only one of the O_EXEC, O_RDONLY, O_WRONLY and O_RDWR may
-	 * be specified.
+	 * Only one of the O_EXEC, O_RDONLY, O_WRONLY and O_RDWR flags
+	 * may be specified.
 	 */
 	if (flags & O_EXEC) {
 		if (flags & O_ACCMODE)


More information about the svn-src-head mailing list