aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-07 20:11:51 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-07 20:11:51 +0000
commitc980360cb59d1eab11a6128f64138e41faaf8de2 (patch)
tree2e9f267eac384d9d5deacce91a66b68657fdb144
parent51a3a93731c403333072f6fb171c706ad554e04a (diff)
downloadrtmux-c980360cb59d1eab11a6128f64138e41faaf8de2.tar.gz
rtmux-c980360cb59d1eab11a6128f64138e41faaf8de2.tar.bz2
rtmux-c980360cb59d1eab11a6128f64138e41faaf8de2.zip
+.
-rw-r--r--TODO1
-rw-r--r--cmd-list-clients.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO
index 025e19c2..a498244f 100644
--- a/TODO
+++ b/TODO
@@ -52,3 +52,4 @@
- update set/setw in man page with -g and -u flags
- document status line options, title bits
- document window options changes
+- more # commands in status-left,right eg #H for hostname. others?
diff --git a/cmd-list-clients.c b/cmd-list-clients.c
index 49dd5da7..9d6d32e4 100644
--- a/cmd-list-clients.c
+++ b/cmd-list-clients.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-list-clients.c,v 1.8 2008-06-05 21:25:00 nicm Exp $ */
+/* $Id: cmd-list-clients.c,v 1.9 2009-01-07 20:11:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -47,6 +47,7 @@ cmd_list_clients_exec(unused struct cmd *self, struct cmd_ctx *ctx)
{
struct client *c;
u_int i;
+ char options[256];
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);