diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 10:11:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 10:11:45 +0000 |
commit | 6fee3e9e4b4c68c5d3d7f333c779ac865af7bf86 (patch) | |
tree | 9ea9b10bb53304355591a8c1889fd6e2a04519aa /control-notify.c | |
parent | 748acdc77ca11a09e637324946a6a4f189defc8e (diff) | |
download | rtmux-6fee3e9e4b4c68c5d3d7f333c779ac865af7bf86.tar.gz rtmux-6fee3e9e4b4c68c5d3d7f333c779ac865af7bf86.tar.bz2 rtmux-6fee3e9e4b4c68c5d3d7f333c779ac865af7bf86.zip |
Rename session idx to session id throughout and add $ prefix to targets
to use it, extended from a diff from George Nachman.
Diffstat (limited to 'control-notify.c')
-rw-r--r-- | control-notify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-notify.c b/control-notify.c index bb9708c8..6bc98b6f 100644 --- a/control-notify.c +++ b/control-notify.c @@ -154,7 +154,7 @@ control_notify_attached_session_changed(struct client *c) return; s = c->session; - control_write(c, "%%session-changed %d %s", s->idx, s->name); + control_write(c, "%%session-changed %d %s", s->id, s->name); } void |