diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-03 20:29:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-03 20:29:47 +0000 |
commit | 5289da29ba2fdf15413ec94fa7f2838469abccae (patch) | |
tree | aa229c5c632273d18bd8c0f8729994f0c514327f /cmd-server-info.c | |
parent | c95f1d1ff951fdfea9057952ecadb25884ba8daa (diff) | |
download | rtmux-5289da29ba2fdf15413ec94fa7f2838469abccae.tar.gz rtmux-5289da29ba2fdf15413ec94fa7f2838469abccae.tar.bz2 rtmux-5289da29ba2fdf15413ec94fa7f2838469abccae.zip |
Change session and client activity and creation time members to have more
meaningful names.
Also, remove the code to try and update the session activity time for the
command client when a command message is received as is pointless because it
des not have a session.
Diffstat (limited to 'cmd-server-info.c')
-rw-r--r-- | cmd-server-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-server-info.c b/cmd-server-info.c index 4107527b..4bd6b67f 100644 --- a/cmd-server-info.c +++ b/cmd-server-info.c @@ -105,7 +105,7 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx) if (s == NULL) continue; - t = s->tv.tv_sec; + t = s->creation_time.tv_sec; tim = ctime(&t); *strchr(tim, '\n') = '\0'; |