Index: trunk/Ohana/src/opihi/pcontrol/PclientCommand.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/PclientCommand.c	(revision 10668)
+++ trunk/Ohana/src/opihi/pcontrol/PclientCommand.c	(revision 12840)
@@ -19,11 +19,11 @@
 
   // flush the stdout and stderr buffers here
-  ReadtoIOBuffer (buffer, host[0].stdout);
+  ReadtoIOBuffer (buffer, host[0].stdout_fd);
   FlushIOBuffer (buffer);
-  ReadtoIOBuffer (buffer, host[0].stderr);
+  ReadtoIOBuffer (buffer, host[0].stderr_fd);
   FlushIOBuffer (buffer);
 
   /* send command to client (adding on \n) */
-  status = write_fmt (host[0].stdin, "%s\n", command);
+  status = write_fmt (host[0].stdin_fd, "%s\n", command);
 
   /* is pipe still open? */
@@ -37,5 +37,5 @@
   status = -1;
   for (i = 0; (i < PCLIENT_TIMEOUT) && (status != 0) && (line == NULL); i++) {
-    status = ReadtoIOBuffer (buffer, host[0].stdout);
+    status = ReadtoIOBuffer (buffer, host[0].stdout_fd);
     line = memstr (buffer[0].buffer, response, buffer[0].Nbuffer);
     if (status == -1) nanosleep (&request, &remain);
