From b23581583145d31b48e8dc836a943c803033eeec Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 8 Feb 2009 16:26:43 +0000 Subject: Don't close fds, so error message appears. --- tmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 14b317c5..96309fa1 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.105 2009-02-08 16:11:26 nicm Exp $ */ +/* $Id: tmux.c,v 1.106 2009-02-08 16:26:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -398,7 +398,7 @@ main(int argc, char **argv) } if (buffer_poll(&pfd, cctx.srv_in, cctx.srv_out) != 0) - fatalx("lost server"); + goto out; restart: if (BUFFER_USED(cctx.srv_in) < sizeof hdr) -- cgit