pgbouncer: update to 1.24.0
[oi-userland.git] / components / text / less / patches / 01-sigwinch.patch
blobe6f940cb173ff4f5f3cd8d28927d269d0cbfcaf8
1 # SIGWINCH should not stop reading from pipes; should be send up stream
2 --- less-633/ttyin.c.org 2023-05-03 11:43:01.000000000 -0700
3 +++ less-633/ttyin.c 2023-08-09 03:52:33.769132730 -0700
4 @@ -187,7 +187,7 @@
5 result = iread(tty, &uc, sizeof(char));
6 c = (char) uc;
8 - if (result == READ_INTR)
9 + if (result == READ_INTR || result == READ_AGAIN)
10 return (READ_INTR);
11 if (result < 0)