Index: trunk/Ohana/src/dvopsps/src/insert_detections_dvopsps.c
===================================================================
--- trunk/Ohana/src/dvopsps/src/insert_detections_dvopsps.c	(revision 35172)
+++ trunk/Ohana/src/dvopsps/src/insert_detections_dvopsps.c	(revision 35176)
@@ -110,4 +110,9 @@
   HostTable *table = HostTableLoad (CATDIR, sky->hosts);
 
+  char uniquer[12];
+  int TIME = time(NULL);
+  int PID = getpid();
+  snprintf (uniquer, 12, "%05d.%05d", PID, TIME % 100000);
+
   int i;
   for (i = 0; i < table->Nhosts; i++) {
@@ -121,5 +126,5 @@
       // XXX need to uniquify the result file
       ALLOCATE (table->hosts[i].results, char, 1024);
-      snprintf (table->hosts[i].results, 1024, "%s/dvopsps_detections.dat", table->hosts[i].pathname);
+      snprintf (table->hosts[i].results, 1024, "%s/dvopsps.%s.det.dat", table->hosts[i].pathname, uniquer);
     }
 
