diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-11 15:28:42 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-11 15:28:42 +0000 |
commit | 9695e56e6ca3397d424c5a2b13ce6c65379d11ba (patch) | |
tree | f4eb44cd88bfd76bed9a0fefdc5d3dd76809dd5c | |
parent | 6610a558f786d6df082b70cbd2e1027c15279ecd (diff) | |
download | FreeBSD-src-9695e56e6ca3397d424c5a2b13ce6c65379d11ba.zip FreeBSD-src-9695e56e6ca3397d424c5a2b13ce6c65379d11ba.tar.gz |
Add missed MODULE_VERSION() call, so loading of unicode conversion routine
works properly.
Clue beaten in by: des
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 1 | ||||
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index e73fb7e..a474424 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -92,6 +92,7 @@ static struct vfsops cd9660_vfsops = { vfs_stdextattrctl, }; VFS_SET(cd9660_vfsops, cd9660, VFCF_READONLY); +MODULE_VERSION(cd9660, 1); /* diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index e73fb7e..a474424 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -92,6 +92,7 @@ static struct vfsops cd9660_vfsops = { vfs_stdextattrctl, }; VFS_SET(cd9660_vfsops, cd9660, VFCF_READONLY); +MODULE_VERSION(cd9660, 1); /* |