From 0da8731c0be8ecb65e45b6d9adaa08dca6de3944 Mon Sep 17 00:00:00 2001 From: yabu76 Date: Mon, 19 Jan 2026 22:54:34 +0900 Subject: [PATCH] Fix tty_configure to change settings depending on the state of the raw option --- src/tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tty.c b/src/tty.c index 44ea558..088a876 100644 --- a/src/tty.c +++ b/src/tty.c @@ -1721,7 +1721,7 @@ void tty_reconfigure(void) if (connected) { /* Activate new port settings */ - tcsetattr(device_fd, TCSANOW, &tio); + tty_tcsetattr(device_fd); } }