diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1998-01-09 20:16:49 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1998-01-09 20:16:49 +0000 |
commit | 0fd4ac00db99ae2c7af812efa8c458f4e6b5f40c (patch) | |
tree | ae9f36fbcdf1c0cb78cb5234326c332a97dc3eef /sys | |
parent | 42c5bed29a11f7ee327ad58ef0be8a43a8af8a9b (diff) |
PARAMASK updated to reflect addition of new bit
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/namei.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/namei.h b/sys/sys/namei.h index cd6dda51d2b..2fa0f2ca35f 100644 --- a/sys/sys/namei.h +++ b/sys/sys/namei.h @@ -1,4 +1,4 @@ -/* $OpenBSD: namei.h,v 1.5 1998/01/09 16:21:57 csapuntz Exp $ */ +/* $OpenBSD: namei.h,v 1.6 1998/01/09 20:16:48 csapuntz Exp $ */ /* $NetBSD: namei.h,v 1.11 1996/02/09 18:25:20 christos Exp $ */ /* @@ -140,7 +140,7 @@ struct nameidata { #define DOWHITEOUT 0x040000 /* do whiteouts */ #define REQUIREDIR 0x080000 /* must be a directory */ #define STRIPSLASHES 0x100000 /* strip trailing slashes */ -#define PARAMASK 0xfff00 /* mask of parameter descriptors */ +#define PARAMASK 0x1fff00 /* mask of parameter descriptors */ /* * Initialization of an nameidata structure. */ |