From 9a85c7a31757b4b624c908f4b2268376bd6da55d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20S=C3=A1nchez=20Parra?= Date: Mon, 27 Apr 2020 11:42:51 +0200 Subject: [PATCH] #942 Fix task break down OpenGnsys tasks can contain other tasks. To know if a element of the task is another task, we need to check if it has the parameter tareaid (Task ID). The code had a bug and the check was done on an non-existent parameter This commit fix this bug changing the non-existent parameter for tareaid. Signed-off-by: OpenGnSys Support Team --- sources/ogAdmServer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/ogAdmServer.c b/sources/ogAdmServer.c index 28009fb..f72b82c 100644 --- a/sources/ogAdmServer.c +++ b/sources/ogAdmServer.c @@ -3543,7 +3543,7 @@ static int og_dbi_queue_task(struct og_dbi *dbi, uint32_t task_id) } while (dbi_result_next_row(result)) { - task_id_next = dbi_result_get_uint(result, "procedimientoid"); + task_id_next = dbi_result_get_uint(result, "tareaid"); if (task_id_next > 0) { if (og_dbi_queue_task(dbi, task_id_next))