diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-25 19:50:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-25 19:50:32 +0000 |
commit | f9b2ee4342396c852ce96c4fbf1bc1f206badf4a (patch) | |
tree | 3ec9f00350a182744360a3c45b500d322865e23a /exec/main.c | |
parent | ed276ac0ea0d9c1ed87c3c6456f5f55afa334cef (diff) |
(exec_demuxer): Call exec_startup_server.
Diffstat (limited to 'exec/main.c')
-rw-r--r-- | exec/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/exec/main.c b/exec/main.c index c0575113..81572187 100644 --- a/exec/main.c +++ b/exec/main.c @@ -57,7 +57,10 @@ static int exec_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) { extern int exec_server (mach_msg_header_t *inp, mach_msg_header_t *outp); - return exec_server (inp, outp) || trivfs_demuxer (inp, outp); + extern int exec_startup_server (mach_msg_header_t *, mach_msg_header_t *); + return (exec_startup_server (inp, outp) || + exec_server (inp, outp) || + trivfs_demuxer (inp, outp)); } |