diff options
author | avatar <avatar@FreeBSD.org> | 2005-11-24 17:35:05 +0000 |
---|---|---|
committer | avatar <avatar@FreeBSD.org> | 2005-11-24 17:35:05 +0000 |
commit | 5d85d3ca54fa8a1a7c330ce11a6682b88c5c1499 (patch) | |
tree | 75205c2184b7e67bcb9c858efa1fdced9bbc99c4 /sbin/mount | |
parent | 255af8bec3b770a2af895f37122fc11ec727733c (diff) | |
download | FreeBSD-src-5d85d3ca54fa8a1a7c330ce11a6682b88c5c1499.zip FreeBSD-src-5d85d3ca54fa8a1a7c330ce11a6682b88c5c1499.tar.gz |
Fixing a regression introduced in rev1.72 by connecting cd9660 to the
external mounting program list as well; otherwise, entry like the following
in /etc/fstab wouldn't work:
/dev/acd0 /mnt/cdrom cd9660 ro,-C=big5 0 0
Reviewed by: rodrigc
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index abde12d..770be86 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -129,7 +129,7 @@ use_mountprog(const char *vfstype) */ unsigned int i; const char *fs[] = { - "mfs", "msdosfs", "nfs", "nfs4", "ntfs", + "cd9660", "mfs", "msdosfs", "nfs", "nfs4", "ntfs", "nwfs", "nullfs", "portalfs", "reiserfs", "smbfs", "udf", "umapfs", "unionfs", NULL |