<div dir="ltr"><div>I have the same problem as in the thread <a href="https://lists.xymon.com/archive/2011-September/032469.html">https://lists.xymon.com/archive/2011-September/032469.html</a></div><div>Where a patch was suggested here : <a href="https://lists.xymon.com/archive/2011-September/032481.html">https://lists.xymon.com/archive/2011-September/032481.html</a></div><div><br></div><div>But in fact the problem is always present with combo of combo.</div><div><br></div><div>I found the solution : update color value in function getstatus</div><div>So I propose this patch, just adding one line to update color : *color = (walk->result ? COL_GREEN : COL_RED);</div><div><br></div><div>--- combostatus.c.orig    2019-09-03 14:46:39.221984375 +0200<br>+++ combostatus.c  2019-09-03 14:50:42.412165047 +0200<br>@@ -251,6 +251,7 @@<br>     for (walk = testhead; (walk && ( (strcmp(walk->reshostname, hostname) != 0) || (strcmp(walk->restestname, testname) != 0) ) ); walk = walk->next);<br>  if (walk != NULL) {<br>          /* It is a combo test they want the result of. */<br>+            *color = (walk->result ? COL_GREEN : COL_RED);<br>            return walk->result;<br>      }<br></div><div><br></div><div><br></div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">dominique DELPORTE<br></div></div></div></div>