Index: branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/dvo_host_utils.c
===================================================================
--- branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 33869)
+++ branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 33870)
@@ -4,5 +4,5 @@
 # define PARALLEL_MANUAL 0
 # define PARALLEL_SERIAL 0
-# define MAX_PATH_LENGTH 1024
+# define DVO_MAX_PATH 1024
 
 int HostTableLaunchJobs (HostTable *table, char *basecmd, char *options) {
@@ -17,5 +17,5 @@
 
     // ensure that the paths are absolute path names
-    char *tmppath = abspath (table->hosts[i].pathname, MAX_PATH_LENGTH);
+    char *tmppath = abspath (table->hosts[i].pathname, DVO_MAX_PATH);
     free (table->hosts[i].pathname);
     table->hosts[i].pathname = tmppath;
@@ -23,10 +23,10 @@
     // need to save the results filename with the uniquer
     // XXX a bit of a waste (but only 1024 * 60 bytes or so
-    ALLOCATE (table->hosts[i].results, char, MAX_PATH_LENGTH);
-    snprintf (table->hosts[i].results, MAX_PATH_LENGTH, "%s/dvo.results.%s.fits", table->hosts[i].pathname, uniquer);
+    ALLOCATE (table->hosts[i].results, char, DVO_MAX_PATH);
+    snprintf (table->hosts[i].results, DVO_MAX_PATH, "%s/dvo.results.%s.fits", table->hosts[i].pathname, uniquer);
 
-    char commandBase[MAX_PATH_LENGTH];
-    snprintf (commandBase, MAX_PATH_LENGTH, "dvo.command.%s.txt", uniquer);
-    char *commandFile = abspath(commandBase, MAX_PATH_LENGTH);
+    char commandBase[DVO_MAX_PATH];
+    snprintf (commandBase, DVO_MAX_PATH, "dvo.command.%s.txt", uniquer);
+    char *commandFile = abspath(commandBase, DVO_MAX_PATH);
 
     FILE *f = fopen (commandFile, "w");
@@ -86,5 +86,5 @@
   }
 
-  char *CATDIR = abspath (tmppath, MAX_PATH_LENGTH);
+  char *CATDIR = abspath (tmppath, DVO_MAX_PATH);
   if (!CATDIR) {
     gprint (GP_ERR, "failed to make an absolute path from %s (too long)\n", tmppath);
Index: branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/hosts.c
===================================================================
--- branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/hosts.c	(revision 33869)
+++ branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/hosts.c	(revision 33870)
@@ -1,5 +1,5 @@
 # include "dvoshell.h"
 # include <glob.h>
-# define MAX_PATH_LENGTH 1024
+# define DVO_MAX_PATH 1024
 
 // functions to manage the remote hosts
@@ -59,6 +59,6 @@
     for (i = 0; i < table->Nhosts; i++) {
       pglob.gl_offs = 0;
-      char name[MAX_PATH_LENGTH];
-      snprintf (name, MAX_PATH_LENGTH, "%s/dvo.results.%05d.*.fits", table->hosts[i].pathname, PID);
+      char name[DVO_MAX_PATH];
+      snprintf (name, DVO_MAX_PATH, "%s/dvo.results.%05d.*.fits", table->hosts[i].pathname, PID);
       if (VERBOSE) gprint (GP_ERR, "checking %s\n", name);
       glob (name, 0, NULL, &pglob);
Index: branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/remote.c
===================================================================
--- branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/remote.c	(revision 33869)
+++ branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/remote.c	(revision 33870)
@@ -1,5 +1,5 @@
 # include "dvoshell.h"
 # include <glob.h>
-# define MAX_PATH_LENGTH 1024
+# define DVO_MAX_PATH 1024
 
 // functions to manage the remote hosts
