diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 15:54:20 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 15:54:20 +0000 |
commit | 8cb834014a8b962b8ca359967e83fe54487b16f3 (patch) | |
tree | 5170ff9dbfb3113c4d9271f91ee56d4be4c00cda | |
parent | effc618653c23d90b255cf34a854441ba5b2f52d (diff) |
(trivfs_goaway, trivfs_modify_stat): Update arguments.
-rw-r--r-- | login/utmp.c | 4 | ||||
-rw-r--r-- | pflocal/pflocal.c | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/login/utmp.c b/login/utmp.c index 3a83a278..4333fa92 100644 --- a/login/utmp.c +++ b/login/utmp.c @@ -378,12 +378,12 @@ int trivfs_protid_nporttypes = 1; int trivfs_cntl_nporttypes = 1; void -trivfs_modify_stat (struct stat *st) +trivfs_modify_stat (struct trivfs_protid *cred, struct stat *st) { } error_t -trivfs_goaway (int flags, mach_port_t realnode, int ctltype, int pitype) +trivfs_goaway (struct trivfs_control *fsys, int flags) { die(0); } diff --git a/pflocal/pflocal.c b/pflocal/pflocal.c index 4ad41387..dd4cc73e 100644 --- a/pflocal/pflocal.c +++ b/pflocal/pflocal.c @@ -139,15 +139,13 @@ void main(int argc, char *argv[]) } void -trivfs_modify_stat (struct stat *st) +trivfs_modify_stat (struct trivfs_protid *cred, struct stat *st) { st->st_fstype = FSTYPE_MISC; } error_t -trivfs_goaway (int flags, mach_port_t realnode, - struct port_class *fsys_port_class, - struct port_class *file_port_class) +trivfs_goaway (struct trivfs_control *fsys, int flags) { error_t err; |