diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-05 01:54:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-05 01:54:02 +0000 |
commit | fdc14432d877097022606838688fe163e518f111 (patch) | |
tree | 14c8e0ea9095b02024dcb89c2aa2d6ff83355a5c | |
parent | 942fbe92cf1429c1b6457c83e42a1bf967f8e80a (diff) |
(trivfs_S_io_get_owner): No cred arg in pty_io_mod_owner.
(trivfs_S_io_mod_owner): No cred arg in pty_io_get_owner.
-rw-r--r-- | term/users.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/term/users.c b/term/users.c index 2af640fb..1c19664a 100644 --- a/term/users.c +++ b/term/users.c @@ -1591,7 +1591,7 @@ trivfs_S_io_mod_owner (struct trivfs_protid *cred, return EOPNOTSUPP; if (cred->pi.class == pty_class) - return pty_io_mod_owner (cred, owner); + return pty_io_mod_owner (owner); mutex_lock (&global_lock); termflags &= ~NO_OWNER; @@ -1610,7 +1610,7 @@ trivfs_S_io_get_owner (struct trivfs_protid *cred, return EOPNOTSUPP; if (cred->pi.class == pty_class) - return pty_io_get_owner (cred, owner); + return pty_io_get_owner (owner); mutex_lock (&global_lock); if (termflags & NO_OWNER) |