Do not blindly pass linux filesystem specific mount data across.

This commit is contained in:
Poul-Henning Kamp 2004-12-03 18:14:22 +00:00
parent 052bf4427f
commit c9b621fb98

View File

@ -798,7 +798,7 @@ linux_mount(struct thread *td, struct linux_mount_args *args)
"fspath", mntonname,
NULL);
} else
error = vfs_mount(td, fstypename, mntonname, fsflags, fsdata);
error = EOPNOTSUPP;
return (error);
}