fdm_ptmx(): regression: don’t return false when an interactive resize is in progress

This commit is contained in:
Daniel Eklöf 2022-10-18 18:28:51 +02:00
parent b0c30c7ed2
commit 2e9b3ceb95
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -263,7 +263,7 @@ fdm_ptmx(struct fdm *fdm, int fd, int events, void *data)
* temporary one - all changes done to it will be lost when
* the interactive resize ends.
*/
return 0;
return true;
}
uint8_t buf[24 * 1024];