Ross Cooney <[EMAIL PROTECTED]> wrote:
> 
> The "qmail-scanner-queue.pl" file has a the following line:
> @scanner_array=("sweep_scanner");
> This is where it calls another function which actually calls the scanner.
> 
> Does anybody know how to edit this so that two scanners are used?
> 
> Is it:
> @scanner_array=("sweep_scanner & iscan_scanner");
> 
> or
> @scanner_array=("sweep_scanner" & "iscan_scanner");

I'm not a Perl coder, but neither of those look right.  I would guess it
is something closer to:

    @scanner_array=("sweep_scanner", "iscan_scanner");

Charles
-- 
-----------------------------------------------------------------------
Charles Cazabon                            <[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
-----------------------------------------------------------------------

Reply via email to