mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08: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…
x
Reference in New Issue
Block a user