Module Name: src
Committed By: rin
Date: Wed May 27 02:03:30 UTC 2020
Modified Files:
src/sys/sys: namei.src
Log Message:
Fix typo.
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/sys/sys/namei.src
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/namei.src
diff -u src/sys/sys/namei.src:1.56 src/sys/sys/namei.src:1.57
--- src/sys/sys/namei.src:1.56 Tue May 26 22:05:52 2020
+++ src/sys/sys/namei.src Wed May 27 02:03:30 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: namei.src,v 1.56 2020/05/26 22:05:52 ad Exp $ */
+/* $NetBSD: namei.src,v 1.57 2020/05/27 02:03:30 rin Exp $ */
/*
* Copyright (c) 1985, 1989, 1991, 1993
@@ -163,7 +163,7 @@ NAMEIFL RDONLY 0x0001000 /* lookup with
NAMEIFL ISDOTDOT 0x0002000 /* current component name is .. */
NAMEIFL MAKEENTRY 0x0004000 /* entry is to be added to name cache */
NAMEIFL ISLASTCN 0x0008000 /* this is last component of pathname */
-NAMIEFL WILLBEDIR 0x0010000 /* new files will be dirs */
+NAMEIFL WILLBEDIR 0x0010000 /* new files will be dirs */
NAMEIFL ISWHITEOUT 0x0020000 /* found whiteout */
NAMEIFL DOWHITEOUT 0x0040000 /* do whiteouts */
NAMEIFL REQUIREDIR 0x0080000 /* must be a directory */