Index: branches/eam_branches/ipp-20120405/Ohana/src/libdvo/src/dvo_catalog.c
===================================================================
--- branches/eam_branches/ipp-20120405/Ohana/src/libdvo/src/dvo_catalog.c	(revision 33900)
+++ branches/eam_branches/ipp-20120405/Ohana/src/libdvo/src/dvo_catalog.c	(revision 33901)
@@ -211,5 +211,5 @@
   
   if (!check_file_access (catalog[0].filename, BACKUP, READWRITE, VERBOSE)) {
-    if (VERBOSE) fprintf (stderr, "no permission to access %s\n", catalog[0].filename);
+    fprintf (stderr, "no permission to access %s\n", catalog[0].filename);
     return (FALSE);
   }
@@ -219,13 +219,13 @@
   switch (dvo_catalog_lock (catalog, catalog[0].lockmode)) {
   case DVO_CAT_OPEN_FAIL:
-    if (VERBOSE) fprintf (stderr, "can't lock file %s\n", catalog[0].filename);
+    fprintf (stderr, "can't lock file %s\n", catalog[0].filename);
     return (FALSE);
   case DVO_CAT_OPEN_OK:
     if (!dvo_catalog_load (catalog, VERBOSE)) {
-      if (VERBOSE) fprintf (stderr, "failure loading catalog\n");
+      fprintf (stderr, "failure loading catalog\n");
       return (FALSE);
     }
     if (!dvo_catalog_check (catalog, Nsecfilt, TRUE)) {
-      if (VERBOSE) fprintf (stderr, "can't reduce number of secondary filters\n");
+      fprintf (stderr, "can't reduce number of secondary filters\n");
       return (FALSE);
     }
