From c668d972ea67b86f7b2e6341f0492de04f0bfc3b Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 20 Nov 2018 15:47:24 +0100 Subject: [PATCH] policy: fix disconnecting notify:alive signal from active-connection Fixes: 37e8c53eeed579fe34a68819cd12f3295d581394 --- src/nm-policy.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nm-policy.c b/src/nm-policy.c index 5199afbf1c..4e47b8c902 100644 --- a/src/nm-policy.c +++ b/src/nm-policy.c @@ -2249,6 +2249,9 @@ active_connection_removed (NMManager *manager, g_signal_handlers_disconnect_by_func (active, active_connection_state_changed, self); + g_signal_handlers_disconnect_by_func (active, + active_connection_keep_alive_changed, + self); } /*****************************************************************************/