| Next | Program Repair Shop | 19 | 
There are about half a dozen calls to verbose()
Here's the most interesting:
     650  print STDERR "jsjvv: md5sum found " .
     651            scalar  (@{$file_name_by_md5sum{$md5sum}}) . " matches\n"
     652      if ($verbose1) && ( scalar  (@{$file_name_by_md5sum{$md5sum}}) > 1);
It becomes:
        verbose "jsjvv: md5sum found " .
              scalar  (@{$file_name_by_md5sum{$md5sum}}) . " matches\n"
          if scalar  (@{$file_name_by_md5sum{$md5sum}}) > 1;
It's not a huge improvement, but it is an improvement
| Next | ![]()  | 
    Copyright © 2006 M. J. Dominus |