From ffb6113d265615cf18d2348769403d727e9a1484 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Wed, 23 Aug 2017 18:45:09 +0200 Subject: [PATCH] afb-monitor: update hooks for tracing MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Updating hooks is needed (at the moment) after trace requests Signed-off-by: José Bollo --- src/afb-monitor.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/afb-monitor.c b/src/afb-monitor.c index 369c5bf5..4bedc49d 100644 --- a/src/afb-monitor.c +++ b/src/afb-monitor.c @@ -345,13 +345,15 @@ static void f_trace(struct afb_req req) if (add) { rc = afb_trace_add(req, add, trace); if (rc) - return; + goto end; } if (drop) { rc = afb_trace_drop(req, drop, trace); if (rc) - return; + goto end; } afb_req_success(req, NULL, NULL); +end: + afb_apiset_update_hooks(main_apiset, NULL); } -- 2.16.6