diff options
Diffstat (limited to 'trans')
-rw-r--r-- | trans/ChangeLog | 7 | ||||
-rw-r--r-- | trans/pump.c | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/trans/ChangeLog b/trans/ChangeLog index 80eef65e..7108b6c2 100644 --- a/trans/ChangeLog +++ b/trans/ChangeLog @@ -1,3 +1,8 @@ +2001-01-17 Neal H Walfield <neal@cs.uml.edu> + + * pump.c (start_pfinet): Conform to new fshelp_start_translator + semantics. + 2001-01-20 Roland McGrath <roland@frob.com> * streamio.c (options): Add aliases --rdonly, --ro for -r. @@ -24,7 +29,7 @@ (OBJS): Add missing object files to list (crashServer.o crash_replyUser.o msgServer.o device_replyServer.o). - * storeio.c: New file by OKUJI Yoshinori. + * streamio.c: New file by OKUJI Yoshinori. 2000-07-26 Mark Kettenis <kettenis@gnu.org> diff --git a/trans/pump.c b/trans/pump.c index 562ce1b1..f9cf5586 100644 --- a/trans/pump.c +++ b/trans/pump.c @@ -235,7 +235,8 @@ start_pfinet (char *argz, int argz_len) { error_t open_function (int flags, mach_port_t *underlying, - mach_msg_type_name_t *underlying_type) + mach_msg_type_name_t *underlying_type, + task_t task, void *cookie) { int err; @@ -248,7 +249,7 @@ start_pfinet (char *argz, int argz_len) return 0; } - err = fshelp_start_translator (open_function, + err = fshelp_start_translator (open_function, NULL, _HURD_PFINET, argz, argz_len, 60 * 1000, &control); if (err) |