diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-15 00:21:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-15 00:21:24 +0000 |
commit | 668dac5b1230e782928d550e6fe0f5811b481a75 (patch) | |
tree | da48a849b64f03944d3ab6988a9f820ec96f8c9b | |
parent | a1cb652643685cfb976153f6d64aaaa65c682b25 (diff) | |
download | rtmux-668dac5b1230e782928d550e6fe0f5811b481a75.tar.gz rtmux-668dac5b1230e782928d550e6fe0f5811b481a75.tar.bz2 rtmux-668dac5b1230e782928d550e6fe0f5811b481a75.zip |
Retry properly when failed to connect.
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | client.c | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -65,10 +65,12 @@ swap-panes close-pane move-pane (to window) + kill all but current should be able to move to a hidden pane and it would be moved into view - would be nice if tmux could be the shell - fix rxvt cursor fg issue (text under cursor has non-white fg) - key handling sucks a bit and needs to be reworked +- window selection mode a la C-a " in screen for 0.6: - document OPTIONS section in man page with description of new option handling @@ -1,4 +1,4 @@ -/* $Id: client.c,v 1.37 2009-01-11 00:48:42 nicm Exp $ */ +/* $Id: client.c,v 1.38 2009-01-15 00:21:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -82,7 +82,7 @@ retry: if (server_start(path) != 0) goto no_start; } - goto fail; + goto retry; } if ((mode = fcntl(cctx->srv_fd, F_GETFL)) == -1) |