From f23bc8bdcb4420b9a7ee825a6fdf7a2c47680f5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 22 Sep 2017 10:51:59 +0200 Subject: [PATCH] afb-export: cleanup of unused async MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I69e02e32444fe460219d849b26beb3db36ab5467 Signed-off-by: José Bollo --- src/afb-export.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/afb-export.c b/src/afb-export.c index fb9bb747..adc840f0 100644 --- a/src/afb-export.c +++ b/src/afb-export.c @@ -408,7 +408,6 @@ struct call_req struct jobloop *jobloop; struct json_object *result; int status; - int async; }; /* @@ -532,7 +531,6 @@ static void svc_call(void *closure, const char *api, const char *verb, struct js callreq->jobloop = NULL; callreq->callback = callback; callreq->closure = cbclosure; - callreq->async = 1; /* terminates and frees ressources if needed */ afb_xreq_process(&callreq->xreq, export->apiset); @@ -560,7 +558,6 @@ static int svc_call_sync(void *closure, const char *api, const char *verb, struc callreq->callback = NULL; callreq->result = NULL; callreq->status = 0; - callreq->async = 0; afb_xreq_unhooked_addref(&callreq->xreq); /* avoid early callreq destruction */ rc = jobs_enter(NULL, 0, callreq_sync_enter, callreq); if (rc >= 0) -- 2.16.6