diff options
Diffstat (limited to 'src/sys/fs/tmpfs.c')
-rw-r--r-- | src/sys/fs/tmpfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/fs/tmpfs.c b/src/sys/fs/tmpfs.c index 9046002..3048fb4 100644 --- a/src/sys/fs/tmpfs.c +++ b/src/sys/fs/tmpfs.c @@ -203,6 +203,7 @@ tmpfs_create(struct vop_create_args *args) /* Only accept the types we support */ switch (args->vtype) { case VTYPE_FILE: + case VTYPE_SOCK: break; default: return -ENOTSUP; |