diff options
author | nicm <nicm> | 2015-08-28 13:12:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-08-28 13:12:20 +0000 |
commit | f6a0f8730efab9c52eaccbb62b5b1d27e8be7949 (patch) | |
tree | be1e2f252478d90d0fb56030fbb75efbd1028d39 /cmd-set-option.c | |
parent | 57cc4d45d52e0af562172ac4044f311e1bb00c64 (diff) | |
download | rtmux-f6a0f8730efab9c52eaccbb62b5b1d27e8be7949.tar.gz rtmux-f6a0f8730efab9c52eaccbb62b5b1d27e8be7949.tar.bz2 rtmux-f6a0f8730efab9c52eaccbb62b5b1d27e8be7949.zip |
Per-session timers for locking, and remove the global one-second timer.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index 260961cb..56ca91e0 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -176,7 +176,7 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq) return (CMD_RETURN_ERROR); } - /* Start or stop timers when name or status options changed. */ + /* Start or stop timers if necessary. */ if (strcmp(oe->name, "automatic-rename") == 0) { RB_FOREACH(w, windows, &windows) { if (options_get_number(&w->options, "automatic-rename")) |