chiark / gitweb /
wip upload testing
[ypp-sc-tools.db-test.git] / pctb / resolve.c
index 556c54b572f3b6eddb56eae5a8c918d941fda7c0..0bd05792ee2b91d3adc404f732be4be402c2ef04 100644 (file)
@@ -25,6 +25,7 @@
  *  sponsored by Three Rings.
  */
 
+#include "convert.h"
 #include "ocr.h"
 
 static FILE *resolver;
@@ -50,6 +51,7 @@ FILE *resolve_start(void) {
       sysassert( dup2(donepipe[1],4) ==4 );
       EXECLP_HELPER("dictionary-manager",
                    DEBUGP(callout) ? "--debug" : "--noop-arg",
+                   o_quiet ? "--quiet" : "--noop-arg",
                    "--automatic-1",
                    (char*)0);
       sysassert(!"execlp dictionary-manager --automatic failed");
@@ -59,6 +61,8 @@ FILE *resolve_start(void) {
     resolver= fdopen(jobpipe[1],"w"); sysassert(resolver);
     resolver_done= donepipe[0];
   }
+
+  progress("");
   return resolver;
 }