diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:17:53 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:18:13 +0200 |
commit | a8a9ad7f6a298ac3f669fc18bb17005e48524c01 (patch) | |
tree | 268f3cfa5ff58082d60ac078349464cf7d42d009 /libmachdev | |
parent | 5710aaa670a14cbbe4da0e8fe64314a55f14a015 (diff) | |
download | hurd-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')
-rw-r--r-- | libmachdev/ds_routines.c | 4 | ||||
-rw-r--r-- | libmachdev/trivfs_server.c | 2 |
2 files changed, 3 insertions, 3 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; diff --git a/libmachdev/trivfs_server.c b/libmachdev/trivfs_server.c index cf51fb9b..21684dab 100644 --- a/libmachdev/trivfs_server.c +++ b/libmachdev/trivfs_server.c @@ -38,7 +38,7 @@ #include "libdiskfs/diskfs.h" #include "startup_notify_S.h" #include "device_S.h" -#include "notify_S.h" +#include "libports/notify_S.h" #include "fsys_S.h" #include "mach_i386_S.h" |