diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-01-28 23:43:09 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-01-28 23:43:09 +0100 |
commit | e24381784b0a56896542d1a5828a77ad0e1c40ec (patch) | |
tree | 493e0d6ad811f563142c5de72a8b80bb5d142b93 /auth/auth.c | |
parent | 613f84a0fcd46f2143b046b57c6c6444eafa4d4d (diff) | |
parent | b8c728ec51696c5d17ef09a00b3b193b70a487da (diff) | |
download | hurd-e24381784b0a56896542d1a5828a77ad0e1c40ec.tar.gz hurd-e24381784b0a56896542d1a5828a77ad0e1c40ec.tar.bz2 hurd-e24381784b0a56896542d1a5828a77ad0e1c40ec.zip |
Merge branch 'master' of git.savannah.gnu.org:/srv/git/hurd/hurd
Diffstat (limited to 'auth/auth.c')
-rw-r--r-- | auth/auth.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/auth/auth.c b/auth/auth.c index a395e79d..e69c4f86 100644 --- a/auth/auth.c +++ b/auth/auth.c @@ -464,18 +464,16 @@ S_auth_server_authenticate (struct authhandle *serverauth, } +#include "../libports/notify_S.h" +#include "../libports/interrupt_S.h" static int auth_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) { - mig_routine_t auth_server_routine (mach_msg_header_t *); - mig_routine_t ports_notify_server_routine (mach_msg_header_t *); - mig_routine_t ports_interrupt_server_routine (mach_msg_header_t *); - mig_routine_t routine; if ((routine = auth_server_routine (inp)) || - (routine = ports_notify_server_routine (inp)) || - (routine = ports_interrupt_server_routine (inp))) + (routine = ports_interrupt_server_routine (inp)) || + (routine = ports_notify_server_routine (inp))) { (*routine) (inp, outp); return TRUE; |