Index: trunk/Ohana/src/opihi/pclient/job.c
===================================================================
--- trunk/Ohana/src/opihi/pclient/job.c	(revision 4691)
+++ trunk/Ohana/src/opihi/pclient/job.c	(revision 4762)
@@ -8,5 +8,5 @@
   if (argc < 2) {
     fprintf (stderr, "USAGE: job (arg0) (arg1) ... (argN)\n");
-    fprintf (stdout, "STATUS %d\n", -2);
+    fprintf (GetOutfile(), "STATUS %d\n", -2);
     return (FALSE);
   }
@@ -14,5 +14,5 @@
   if (ChildStatus != PCLIENT_NONE) {
     fprintf (stderr, "need to clear existing child\n");
-    fprintf (stdout, "STATUS %d\n", -3);
+    fprintf (GetOutfile(), "STATUS %d\n", -3);
     return (FALSE);
   }
@@ -31,5 +31,5 @@
   pid = fork ();
   if (!pid) { /* must be child process */
-    fprintf (stderr, "starting child process %s...\n", targv[0]);
+    /* fprintf (stderr, "starting child process %s...\n", targv[0]); */
 
     /* close the other ends of the pipes */
@@ -73,5 +73,5 @@
   ChildPID = pid;
 
-  fprintf (stdout, "STATUS %d\n", ChildPID);
+  fprintf (GetOutfile(), "STATUS %d\n", ChildPID);
   return (TRUE);
 
@@ -85,5 +85,5 @@
   if (child_stderr_fd[1] != 0) close (child_stderr_fd[1]);
 
-  fprintf (stdout, "STATUS %d\n", -1);
+  fprintf (GetOutfile(), "STATUS %d\n", -1);
   return (FALSE);
 }
