diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-04-03 23:55:56 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-04-03 23:55:56 +0100 |
commit | 7b8dcbaa865d358d26a20bb60d72f35b6ef9bc1b (patch) | |
tree | 2d92b92cf12cb7ff07fbd350ee1be5e76e8f812b | |
parent | 75b2c1693e66d624ef0c012b3b811d08a42ba722 (diff) | |
parent | 1394420c37aa0a33482c79f7d7b81735db821a73 (diff) | |
download | rtmux-7b8dcbaa865d358d26a20bb60d72f35b6ef9bc1b.tar.gz rtmux-7b8dcbaa865d358d26a20bb60d72f35b6ef9bc1b.tar.bz2 rtmux-7b8dcbaa865d358d26a20bb60d72f35b6ef9bc1b.zip |
Merge branch 'master' of github.com:tmux/tmux
-rw-r--r-- | server.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ server_create_socket(void) return (-1); umask(mask); - if (listen(fd, 16) == -1) + if (listen(fd, 128) == -1) return (-1); setblocking(fd, 0); |