diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-07 06:13:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-07 06:13:21 +0000 |
commit | 713bad063aefe78960c94e7f482e206524400e6f (patch) | |
tree | 92807bda0faf9158823adeb474a7bd53c18cc039 /status.c | |
parent | 29e225361168640eca39b2d2e2108bc2792d4fbb (diff) | |
download | rtmux-713bad063aefe78960c94e7f482e206524400e6f.tar.gz rtmux-713bad063aefe78960c94e7f482e206524400e6f.tar.bz2 rtmux-713bad063aefe78960c94e7f482e206524400e6f.zip |
Make status-interval actually changeable.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.22 2008-06-06 17:20:30 nicm Exp $ */ +/* $Id: status.c,v 1.23 2008-06-07 06:13:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -52,9 +52,6 @@ status_write_client(struct client *c) strftime(rbuf, sizeof rbuf, right, localtime(&(c->status_ts.tv_sec))); rlen = strlen(rbuf) + 1; - c->status_ts.tv_sec += - options_get_number(&c->session->options, "status-interval"); - screen_redraw_start_client(&ctx, c); screen_redraw_move_cursor(&ctx, llen, c->sy - slines); screen_redraw_set_attributes(&ctx, 0, scolour); |