diff options
author | trhodes <trhodes@FreeBSD.org> | 2004-07-08 18:06:44 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2004-07-08 18:06:44 +0000 |
commit | 7e476e89f45517495c3c419dac07de1e476fda1a (patch) | |
tree | fc995959f1bbead28fe08e4ad83f43db9ba3004e /sbin/mount_msdosfs | |
parent | 9924c255d2f23bfdd7583f4d445c58389353f554 (diff) | |
download | FreeBSD-src-7e476e89f45517495c3c419dac07de1e476fda1a.zip FreeBSD-src-7e476e89f45517495c3c419dac07de1e476fda1a.tar.gz |
Remove support for gemdos, John removed it from the driver awhile ago.
Glanced at by: jhb
Diffstat (limited to 'sbin/mount_msdosfs')
-rw-r--r-- | sbin/mount_msdosfs/mount_msdosfs.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sbin/mount_msdosfs/mount_msdosfs.c b/sbin/mount_msdosfs/mount_msdosfs.c index 29a1f11..9013ae5 100644 --- a/sbin/mount_msdosfs/mount_msdosfs.c +++ b/sbin/mount_msdosfs/mount_msdosfs.c @@ -70,9 +70,6 @@ static struct mntopt mopts[] = { MOPT_FORCE, MOPT_SYNC, MOPT_UPDATE, -#ifdef MSDOSFSMNT_GEMDOSFS - { "gemdosfs", 0, MSDOSFSMNT_GEMDOSFS, 1 }, -#endif { "shortnames", 0, MSDOSFSMNT_SHORTNAME, 1 }, { "longnames", 0, MSDOSFSMNT_LONGNAME, 1 }, { "nowin95", 0, MSDOSFSMNT_NOWIN95, 1 }, @@ -106,11 +103,6 @@ main(int argc, char **argv) while ((c = getopt(argc, argv, "sl9u:g:m:M:o:L:D:")) != -1) { #endif switch (c) { -#ifdef MSDOSFSMNT_GEMDOSFS - case 'G': - args.flags |= MSDOSFSMNT_GEMDOSFS; - break; -#endif case 's': args.flags |= MSDOSFSMNT_SHORTNAME; break; |