Index: /trunk/Ohana/src/opihi/pcontrol/CheckBusyJob.c
===================================================================
--- /trunk/Ohana/src/opihi/pcontrol/CheckBusyJob.c	(revision 10662)
+++ /trunk/Ohana/src/opihi/pcontrol/CheckBusyJob.c	(revision 10663)
@@ -1,3 +1,4 @@
 # include "pcontrol.h"
+# define DEBUG 1
 
 int CheckBusyJob (Job *job, Host *host) {
@@ -37,10 +38,12 @@
     case PCLIENT_HUNG:
       // don't do anything drastic, just keep trying
-      if (VerboseMode()) gprint (GP_ERR, "client is busy, not responding");
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "client is busy, not responding");
+      PutHost (host, PCONTROL_HOST_BUSY, STACK_BOTTOM);
+      PutJob (job, PCONTROL_JOB_BUSY, STACK_BOTTOM);
       FreeIOBuffer (&buffer);
       return (TRUE);
 
     case PCLIENT_GOOD:
-      if (VerboseMode()) gprint (GP_ERR, "message received (CheckBusyJob)");
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "message received (CheckBusyJob)");
       break;
 
