summary refs log tree commit diff
path: root/bin/ptee.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ptee.c')
-rw-r--r--bin/ptee.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ptee.c b/bin/ptee.c
index 6a9a16b4..f2ea9609 100644
--- a/bin/ptee.c
+++ b/bin/ptee.c
@@ -78,12 +78,12 @@ int main(int argc, char *argv[]) {
 			ssize_t rlen = read(STDIN_FILENO, buf, sizeof(buf));
 			if (rlen < 0) err(EX_IOERR, "read");
 
-			if (rlen == 1 && buf[0] == CTRL('S')) {
+			if (rlen == 1 && buf[0] == CTRL('Q')) {
 				stop ^= true;
 				continue;
 			}
 
-			if (rlen == 1 && buf[0] == CTRL('Q')) {
+			if (rlen == 1 && buf[0] == CTRL('S')) {
 				char dump[] = "\x1B[10i";
 				ssize_t wlen = write(STDOUT_FILENO, dump, sizeof(dump) - 1);
 				if (wlen < 0) err(EX_IOERR, "write");