diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-02-26 18:37:47 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-02-26 18:37:47 +0000 |
commit | b29ed13ee30b799fd0f19cc2857977c26b2fbf7a (patch) | |
tree | 4ad4cfdb0c433df58d46016613b1efaaac9f1341 /pfinet/main.c | |
parent | 88e781764aedd079edf8e99e6bb0191430be7fea (diff) |
Formerly main.c.~15~
Diffstat (limited to 'pfinet/main.c')
-rw-r--r-- | pfinet/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pfinet/main.c b/pfinet/main.c index f925f144..25c3a7e5 100644 --- a/pfinet/main.c +++ b/pfinet/main.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -41,8 +41,7 @@ pfinet_demuxer (mach_msg_header_t *inp, extern int io_server (mach_msg_header_t *, mach_msg_header_t *); extern int socket_server (mach_msg_header_t *, mach_msg_header_t *); - return (ethernet_demuxer (inp, outp) - || io_server (inp, outp) + return (io_server (inp, outp) || socket_server (inp, outp) || trivfs_demuxer (inp, outp)); } |