=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.74 retrieving revision 1.75 diff -c -r1.74 -r1.75 *** src/usr.bin/tmux/format.c 2015/06/18 23:55:24 1.74 --- src/usr.bin/tmux/format.c 2015/07/13 15:37:26 1.75 *************** *** 1,4 **** ! /* $OpenBSD: format.c,v 1.74 2015/06/18 23:55:24 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: format.c,v 1.75 2015/07/13 15:37:26 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 711,716 **** --- 711,718 ---- format_add(ft, "client_tty", "%s", c->tty.path); if (c->tty.termname != NULL) format_add(ft, "client_termname", "%s", c->tty.termname); + format_add(ft, "client_control_mode", "%d", + !!(c->flags & CLIENT_CONTROL)); t = c->creation_time.tv_sec; format_add(ft, "client_created", "%lld", (long long) t);