From df5eec7d0e6eb80d064c55222a5da56a81539dc0 Mon Sep 17 00:00:00 2001 From: Ferdi Franceschini Date: Fri, 17 May 2013 10:50:53 +1000 Subject: [PATCH] Slave hdb paths which are chained to a master path were being updated twice. The slaves were being updated with the master's reading as well as their reading. --- sicshipadaba.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sicshipadaba.c b/sicshipadaba.c index 5ada564c..b7639f77 100644 --- a/sicshipadaba.c +++ b/sicshipadaba.c @@ -3226,7 +3226,7 @@ static hdbCallbackReturn ChainCallback(pHdb node, void *userData, if (slave != NULL) { memset(&vv, 0, sizeof(hdbValue)); GetHipadabaPar(slave, &vv, mm->callData); - UpdateHipadabaPar(slave, *(mm->v), mm->callData); +/* UpdateHipadabaPar(slave, *(mm->v), mm->callData); */ ReleaseHdbValue(&vv); } return hdbContinue;