svn commit: r187575 - stable/6/sys/kern

John Baldwin jhb at FreeBSD.org
Wed Jan 21 13:48:48 PST 2009


Author: jhb
Date: Wed Jan 21 21:48:46 2009
New Revision: 187575
URL: http://svn.freebsd.org/changeset/base/187575

Log:
  Fix build.
  
  Pointy hat to:	jhb

Modified:
  stable/6/sys/kern/vfs_syscalls.c

Modified: stable/6/sys/kern/vfs_syscalls.c
==============================================================================
--- stable/6/sys/kern/vfs_syscalls.c	Wed Jan 21 21:31:44 2009	(r187574)
+++ stable/6/sys/kern/vfs_syscalls.c	Wed Jan 21 21:48:46 2009	(r187575)
@@ -3712,7 +3712,7 @@ kern_getdirentries(struct thread *td, in
 	int error, eofflag;
 
 	AUDIT_ARG(fd, fd);
-	if (uap->count > INT_MAX)
+	if (count > INT_MAX)
 		return (EINVAL);
 	if ((error = getvnode(td->td_proc->p_fd, fd, &fp)) != 0)
 		return (error);


More information about the svn-src-stable mailing list