Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update sys/net/application_layer/telnet/telnet_server.c
Browse files Browse the repository at this point in the history
Co-authored-by: Marian Buschsieweke <[email protected]>
benpicco and maribu authored Feb 7, 2024
1 parent 01b1b4b commit 5638da6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sys/net/application_layer/telnet/telnet_server.c
Original file line number Diff line number Diff line change
@@ -276,7 +276,8 @@ static void *telnet_thread(void *arg)
write:
if (IS_USED(MODULE_STDIO_TELNET)) {
isrpipe_write_one(&stdin_isrpipe, c);
} else {
}
else {
pipe_write(&_stdin_pipe, &c, 1);
}
}

0 comments on commit 5638da6

Please sign in to comment.