summaryrefslogtreecommitdiff
path: root/term/users.c
diff options
context:
space:
mode:
Diffstat (limited to 'term/users.c')
-rw-r--r--term/users.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term/users.c b/term/users.c
index 8c2a3bf2..a947ed92 100644
--- a/term/users.c
+++ b/term/users.c
@@ -490,7 +490,7 @@ trivfs_S_io_read (struct trivfs_protid *cred,
char c = dequeue (inputq);
if (remote_input_mode)
- *cp++;
+ *cp++ = c;
else
{
/* Unless this is EOF, add it to the response. */
@@ -546,7 +546,7 @@ trivfs_S_io_readable (struct trivfs_protid *cred,
return EBADF;
*amt = qsize (inputq);
if (remote_input_mode && *amt)
- *amt--;
+ --*amt;
mutex_unlock (&global_lock);
return 0;