diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-29 14:57:07 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-29 14:57:07 +0000 |
commit | fa537abf8384ce9ebd285749314c05bd2abd25ad (patch) | |
tree | f0c57728b7a5c2ec2e5ae5d4f73db5c639c70276 /server-msg.c | |
parent | 1e316cfc7c0623038f850de1a2f2688497c51914 (diff) | |
download | rtmux-fa537abf8384ce9ebd285749314c05bd2abd25ad.tar.gz rtmux-fa537abf8384ce9ebd285749314c05bd2abd25ad.tar.bz2 rtmux-fa537abf8384ce9ebd285749314c05bd2abd25ad.zip |
tmux new-session -d.
Diffstat (limited to 'server-msg.c')
-rw-r--r-- | server-msg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server-msg.c b/server-msg.c index 0ffa0ede..d52e0812 100644 --- a/server-msg.c +++ b/server-msg.c @@ -1,4 +1,4 @@ -/* $Id: server-msg.c,v 1.9 2007-09-29 13:22:15 nicm Exp $ */ +/* $Id: server-msg.c,v 1.10 2007-09-29 14:57:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -128,7 +128,8 @@ server_msg_fn_new(struct hdr *hdr, struct client *c) if (c->session == NULL) fatalx("session_create failed"); xfree(cmd); - + + server_write_client(c, MSG_DONE, NULL, 0); server_draw_client(c, 0, c->sy - 1); return (0); |