summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1996-07-05 06:52:31 +0000
committermickey <mickey@openbsd.org>1996-07-05 06:52:31 +0000
commita6934abd0a33f7506763e4a9f29e7eec5fbd7397 (patch)
tree7d0fb3b48a562938ad9e2e2f4e7ce14040ca1d87
parentfix swap (diff)
downloadwireguard-openbsd-a6934abd0a33f7506763e4a9f29e7eec5fbd7397.tar.xz
wireguard-openbsd-a6934abd0a33f7506763e4a9f29e7eec5fbd7397.zip
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
};
/*