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