Index: trunk/Ohana/src/opihi/dvo/pmeasure.c
===================================================================
--- trunk/Ohana/src/opihi/dvo/pmeasure.c	(revision 8427)
+++ trunk/Ohana/src/opihi/dvo/pmeasure.c	(revision 8455)
@@ -4,5 +4,5 @@
   
   FILE *f;
-  int i, j, k, m, N;
+  int i, j, k, m, N, VERBOSE;
   double Mz, Mr, mag;
   double Radius, Rmin, Rmax;
@@ -55,4 +55,10 @@
   }
 
+  VERBOSE = FALSE;
+  if ((N = get_argument (argc, argv, "-v"))) {
+    remove_argument (N, &argc, argv);
+    VERBOSE = TRUE;
+  }
+
   if ((N = get_argument (argc, argv, "-m"))) {
     remove_argument (N, &argc, argv);
@@ -77,12 +83,10 @@
   
   for (j = 0; j < skylist[0].Nregions; j++) {
-    catalog.average = 0;
-    
-    /* lock, load, unlock catalog */
     catalog.filename = skylist[0].filename[j];
     catalog.catflags = LOAD_AVES | LOAD_MEAS;
+    catalog.Nsecfilt = 0;
 
     // an error exit status here is a significant error
-    if (!dvo_catalog_open (&catalog, NULL, FALSE, "r")) {
+    if (!dvo_catalog_open (&catalog, NULL, VERBOSE, "r")) {
       fprintf (stderr, "ERROR: failure to open catalog file %s\n", catalog.filename);
       exit (2);
