Module Name:    src
Committed By:   christos
Date:           Tue Sep 27 02:10:55 UTC 2011

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

Log Message:
include <sys/dirent.h> to make MAXNAMLEN visible.


To generate a diff of this commit:
cvs rdiff -u -r1.191 -r1.192 src/sys/kern/vfs_lookup.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/vfs_lookup.c
diff -u src/sys/kern/vfs_lookup.c:1.191 src/sys/kern/vfs_lookup.c:1.192
--- src/sys/kern/vfs_lookup.c:1.191	Mon Sep 26 21:42:45 2011
+++ src/sys/kern/vfs_lookup.c	Mon Sep 26 22:10:55 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_lookup.c,v 1.191 2011/09/27 01:42:45 christos Exp $	*/
+/*	$NetBSD: vfs_lookup.c,v 1.192 2011/09/27 02:10:55 christos Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_lookup.c,v 1.191 2011/09/27 01:42:45 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_lookup.c,v 1.192 2011/09/27 02:10:55 christos Exp $");
 
 #include "opt_magiclinks.h"
 
@@ -56,6 +56,7 @@ __KERNEL_RCSID(0, "$NetBSD: vfs_lookup.c
 #include <sys/syslog.h>
 #include <sys/kauth.h>
 #include <sys/ktrace.h>
+#include <sys/dirent.h>
 
 #ifndef MAGICLINKS
 #define MAGICLINKS 0

Reply via email to