diff options
author | ed <ed@FreeBSD.org> | 2012-10-18 19:28:31 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2012-10-18 19:28:31 +0000 |
commit | 1fb45e9f39b637d5b55bf144f243d50b19988a48 (patch) | |
tree | 2421c2f009b72f17c590821abc7173d7fdbfceaa | |
parent | 2b4f8b4cff0f059bf1e3f05fca00c8ae991d2ac7 (diff) | |
download | FreeBSD-src-1fb45e9f39b637d5b55bf144f243d50b19988a48.zip FreeBSD-src-1fb45e9f39b637d5b55bf144f243d50b19988a48.tar.gz |
Remove unneeded D_NEEDMINOR.
This is only needed when using clonelists. This got remove in r238693.
-rw-r--r-- | sys/fs/fuse/fuse_device.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/fs/fuse/fuse_device.c b/sys/fs/fuse/fuse_device.c index 234c7e4..53f0cea 100644 --- a/sys/fs/fuse/fuse_device.c +++ b/sys/fs/fuse/fuse_device.c @@ -99,7 +99,6 @@ static struct cdevsw fuse_device_cdevsw = { .d_read = fuse_device_read, .d_write = fuse_device_write, .d_version = D_VERSION, - .d_flags = D_NEEDMINOR, }; /**************************** |