aboutsummaryrefslogtreecommitdiff
path: root/libmachdev/ds_routines.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-10 22:17:53 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-10 22:18:13 +0200
commita8a9ad7f6a298ac3f669fc18bb17005e48524c01 (patch)
tree268f3cfa5ff58082d60ac078349464cf7d42d009 /libmachdev/ds_routines.c
parent5710aaa670a14cbbe4da0e8fe64314a55f14a015 (diff)
downloadhurd-a8a9ad7f6a298ac3f669fc18bb17005e48524c01.tar.gz
hurd-a8a9ad7f6a298ac3f669fc18bb17005e48524c01.tar.bz2
hurd-a8a9ad7f6a298ac3f669fc18bb17005e48524c01.zip
Fix including notify_S.h and running ports_notify_server_routine
Diffstat (limited to 'libmachdev/ds_routines.c')
-rw-r--r--libmachdev/ds_routines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c
index 0f8db7ed..c5a7cd00 100644
--- a/libmachdev/ds_routines.c
+++ b/libmachdev/ds_routines.c
@@ -68,7 +68,7 @@
#include <device/device.h> /* fallback to kernel device */
#include "device_S.h"
-#include "notify_S.h"
+#include "libports/notify_S.h"
#include "machdev-dev_hdr.h"
#include "machdev.h"
#include "mach_device.h"
@@ -333,7 +333,7 @@ machdev_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp)
{
mig_routine_t routine;
if ((routine = device_server_routine (inp)) ||
- (routine = notify_server_routine (inp)))
+ (routine = ports_notify_server_routine (inp)))
{
(*routine) (inp, outp);
return TRUE;