mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-23 23:29:15 +01: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
|
||||
* issues.
|
||||
*/
|
||||
if (errno != EINVAL)
|
||||
if (errno != EINVAL && errno != ENXIO)
|
||||
#endif
|
||||
fatal("ioctl failed");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user