diff options
author | 2016-10-16 22:06:40 +0000 | |
---|---|---|
committer | 2016-10-16 22:06:40 +0000 | |
commit | 2ae124fe486d7811b42e2daedf9d60322f1794d3 (patch) | |
tree | 3ba6edb7f45cafe7d15054b1d759a9425c8b0468 /usr.bin/tmux/control-notify.c | |
parent | Use closefrom(4) in privsep parent and avoid some global file (diff) | |
download | wireguard-openbsd-2ae124fe486d7811b42e2daedf9d60322f1794d3.tar.xz wireguard-openbsd-2ae124fe486d7811b42e2daedf9d60322f1794d3.zip |
Use the notify name string instead of going via an enum and change
existing hooks to use notifys instead.
Diffstat (limited to 'usr.bin/tmux/control-notify.c')
-rw-r--r-- | usr.bin/tmux/control-notify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/control-notify.c b/usr.bin/tmux/control-notify.c index d5651918af4..546d0a18010 100644 --- a/usr.bin/tmux/control-notify.c +++ b/usr.bin/tmux/control-notify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control-notify.c,v 1.17 2016/10/15 00:12:58 nicm Exp $ */ +/* $OpenBSD: control-notify.c,v 1.18 2016/10/16 22:06:40 nicm Exp $ */ /* * Copyright (c) 2012 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -158,7 +158,7 @@ control_notify_window_renamed(struct window *w) } void -control_notify_attached_session_changed(struct client *c) +control_notify_client_session_changed(struct client *c) { struct session *s; |