Index: trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c	(revision 4450)
+++ trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c	(revision 4462)
@@ -3,5 +3,5 @@
 
 /* we read Nbytes from the host, then watch for the prompt */ 
-int GetJobOutput (char *command, Host *host, IOBuffer *buffer, int Nbytes) {
+int GetJobOutput (char *cmd, Host *host, IOBuffer *buffer, int Nbytes) {
   
   int i, status, Nstart;
@@ -13,7 +13,7 @@
   Nstart = buffer[0].Nbuffer;
 
-  /* send command (stdout / stderr) */
-  ALLOCATE (line, char, MAX (1, strlen(command) + 1));
-  sprintf (line, "%s\n", command);
+  /* send cmd (stdout / stderr) */
+  ALLOCATE (line, char, MAX (1, strlen(cmd) + 1));
+  sprintf (line, "%s\n", cmd);
   status = write (host[0].stdin, line, strlen(line));
   free (line);
@@ -46,5 +46,5 @@
 
     default:
-      fprintf (stderr, "message received (GetJobOutput : %s)\n", command);  
+      fprintf (stderr, "message received (GetJobOutput : %s)\n", cmd);  
       /* drop extra bytes from pclient (not pclient:job) */
       buffer[0].Nbuffer = Nstart + Nbytes;
