summaryrefslogtreecommitdiff
path: root/term
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-12-05 01:54:02 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-12-05 01:54:02 +0000
commitfdc14432d877097022606838688fe163e518f111 (patch)
tree14c8e0ea9095b02024dcb89c2aa2d6ff83355a5c /term
parent942fbe92cf1429c1b6457c83e42a1bf967f8e80a (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.
Diffstat (limited to 'term')
-rw-r--r--term/users.c4
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)