Index: trunk/Ohana/src/opihi/pcontrol/CheckHost.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/CheckHost.c	(revision 4772)
+++ trunk/Ohana/src/opihi/pcontrol/CheckHost.c	(revision 7917)
@@ -12,5 +12,5 @@
   switch (status) {
     case 0:
-      if (VerboseMode()) fprintf (stderr, "host %s is down\n", host[0].hostname);
+      if (VerboseMode()) gprint (GP_ERR, "host %s is down\n", host[0].hostname);
       /* if host has a job, job is dead, return to Pending */
       job = (Job *) host[0].job;
@@ -25,5 +25,5 @@
       
     case -1:
-      if (VerboseMode()) fprintf (stderr, "host %s is not responding\n", host[0].hostname);
+      if (VerboseMode()) gprint (GP_ERR, "host %s is not responding\n", host[0].hostname);
       /*** do we mark this in some way (HUNG) ? ***/
       PutHost (host, host[0].stack, STACK_BOTTOM);
@@ -36,5 +36,5 @@
       return (TRUE);
   }
-  fprintf (stderr, "programming error: should not reach here (Check Host)\n"); 
+  gprint (GP_ERR, "programming error: should not reach here (Check Host)\n"); 
   return (FALSE);
 }
