mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Ignore ENXIO on Solaris as well, from Peter Schow.
This commit is contained in:
@ -549,7 +549,7 @@ server_client_check_resize(struct window_pane *wp)
|
||||
* other platforms and ignoring it doesn't seem to cause any
|
||||
* issues.
|
||||
*/
|
||||
if (errno != EINVAL)
|
||||
if (errno != EINVAL && errno != ENXIO)
|
||||
#endif
|
||||
fatal("ioctl failed");
|
||||
}
|
||||
|
Reference in New Issue
Block a user