The branch, master has been updated
       via  b6aef2490f086f3404f439308bb1746ec5134e9a (commit)
      from  931c17ed4f3ac18470f5b385210d61b24a57b5d4 (commit)

- Log -----------------------------------------------------------------
commit b6aef2490f086f3404f439308bb1746ec5134e9a
Author: Nicholas Marriott <nicholas.marri...@gmail.com>
Commit: Nicholas Marriott <nicholas.marri...@gmail.com>

    Ignore ENXIO on Solaris as well, from Peter Schow.
---
 server-client.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/server-client.c b/server-client.c
index 08085f7..d1e3e82 100644
--- a/server-client.c
+++ b/server-client.c
@@ -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");
        }


-----------------------------------------------------------------------

Summary of changes:
 server-client.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
tmux

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
tmux-cvs mailing list
tmux-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to