diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 00:04:44 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 00:04:44 +0000 |
commit | d223d0456206aeba92c9aec7fcf814ee5a56de23 (patch) | |
tree | f4e93df76df1f5fcbb1de98ea259c1991de8cb44 | |
parent | 152a0e10fc0219274f1b4a3f046df0ff9bd3fd9e (diff) |
(diskfs_S_fsys_startup): Strip out support for translators; fshelp now
does that itself.
-rw-r--r-- | libdiskfs/fsys-startup.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libdiskfs/fsys-startup.c b/libdiskfs/fsys-startup.c index 386166b0..ba40f2fa 100644 --- a/libdiskfs/fsys-startup.c +++ b/libdiskfs/fsys-startup.c @@ -29,17 +29,6 @@ diskfs_S_fsys_startup (mach_port_t port, mach_port_t *real, mach_msg_type_name_t *realpoly) { - struct port_info *pi = ports_lookup_port (diskfs_port_bucket, port, - diskfs_transboot_class); - error_t err; - - if (pi) - { - err = fshelp_handle_fsys_startup (pi, ctl, real, realpoly); - ports_port_deref (pi); - return err; - } - else - return diskfs_execboot_fsys_startup (port, ctl, real, realpoly); + return diskfs_execboot_fsys_startup (port, ctl, real, realpoly); } |