summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-06-13 20:47:53 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-06-13 20:47:53 +0000
commit1b0b1b2e6cda8a4f79c9f3f706f637e68e7bc350 (patch)
treecd2e81f6ff2b9dba6ae0c2a1a78d0ce12342cc4a
parent45aece3e4fe8ef36160be9f1b79ff0bdb80061f6 (diff)
(diskfs_demuxer): Call diskfs_startup_notify_server.
-rw-r--r--libdiskfs/demuxer.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libdiskfs/demuxer.c b/libdiskfs/demuxer.c
index d5a6405e..51234cdf 100644
--- a/libdiskfs/demuxer.c
+++ b/libdiskfs/demuxer.c
@@ -1,5 +1,5 @@
/* Demultiplexer for diskfs library
- Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -26,6 +26,8 @@ diskfs_demuxer (mach_msg_header_t *inp,
int diskfs_fsys_server (mach_msg_header_t *, mach_msg_header_t *);
int diskfs_exec_startup_server (mach_msg_header_t *, mach_msg_header_t *);
int diskfs_ifsock_server (mach_msg_header_t *, mach_msg_header_t *);
+ int diskfs_startup_notify_server (mach_msg_header_t *, mach_msg_header_t *);
+
return (diskfs_io_server (inp, outp)
|| diskfs_fs_server (inp, outp)
@@ -33,7 +35,8 @@ diskfs_demuxer (mach_msg_header_t *inp,
|| diskfs_fsys_server (inp, outp)
|| diskfs_exec_startup_server (inp, outp)
|| ports_interrupt_server (inp, outp)
- || (diskfs_shortcut_ifsock ? diskfs_ifsock_server (inp, outp) : 0));
+ || (diskfs_shortcut_ifsock ? diskfs_ifsock_server (inp, outp) : 0)
+ || diskfs_startup_notify_server (inp, outp));
}