summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-06 02:25:58 -0500
committerJune McEnroe <june@causal.agency>2020-02-06 02:25:58 -0500
commita5a162b9c6f9c3672c6c1e0882d70191610943c8 (patch)
tree87a2067169609d26d6cb23cf41b1d10f8e4d2322 /ui.c
parentSearch for cert and priv in config dirs (diff)
downloadcatgirl-a5a162b9c6f9c3672c6c1e0882d70191610943c8.tar.gz
catgirl-a5a162b9c6f9c3672c6c1e0882d70191610943c8.zip
Disable SUSP
Frees up C-z and suspending an IRC client is silly anyway.
Diffstat (limited to '')
-rw-r--r--ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c
index daa6dec..048eade 100644
--- a/ui.c
+++ b/ui.c
@@ -176,6 +176,7 @@ static void disableFlowControl(void) {
 	int error = tcgetattr(STDOUT_FILENO, &term);
 	if (error) err(EX_OSERR, "tcgetattr");
 	term.c_iflag &= ~IXON;
+	term.c_cc[VSUSP] = _POSIX_VDISABLE;
 	term.c_cc[VDISCARD] = _POSIX_VDISABLE;
 	error = tcsetattr(STDOUT_FILENO, TCSADRAIN, &term);
 	if (error) err(EX_OSERR, "tcsetattr");