summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-07-05 06:52:33 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-07-05 06:52:33 +0000
commitc0462aa1981849b645fbcd6b7b99047d5871ec72 (patch)
treece8b3a2dee20735dcd7634e909670a9f3eab8175
parent737f5968a7daeb70d20bf9959b141f61c18eac33 (diff)
Add NCPfs constants.
-rw-r--r--sys/sys/mount.h3
-rw-r--r--sys/sys/vnode.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index 6e8ac9be311..ab1c6c371cd 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount.h,v 1.8 1996/06/24 03:35:00 downsj Exp $ */
+/* $OpenBSD: mount.h,v 1.9 1996/07/05 06:52:32 mickey Exp $ */
/* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */
/*
@@ -101,6 +101,7 @@ struct statfs {
#define MOUNT_UNION "union" /* Union (translucent) Filesystem */
#define MOUNT_ADOSFS "adosfs" /* AmigaDOS Filesystem */
#define MOUNT_EXT2FS "ext2fs" /* Second Extended Filesystem */
+#define MOUNT_NCPFS "ncpfs" /* NetWare Network File System */
/*
* Structure per mounted file system. Each mounted file system has an
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 58d19d4cdf1..7043034d519 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vnode.h,v 1.6 1996/06/24 03:35:00 downsj Exp $ */
+/* $OpenBSD: vnode.h,v 1.7 1996/07/05 06:52:31 mickey Exp $ */
/* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */
/*
@@ -57,7 +57,7 @@ enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD };
enum vtagtype {
VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC,
VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS,
- VT_UNION, VT_ADOSFS, VT_EXT2FS
+ VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_NCPFS
};
/*