summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-09-28 02:25:23 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-09-28 02:25:23 +0000
commit87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a (patch)
tree2b4cf1415f9893cf105b691f9127af5232b2246e /perl-install/install_steps_interactive.pm
parent82ab154cc91bc4d2ceff3a207d119058d7d18454 (diff)
downloaddrakx-backup-do-not-use-87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a.tar
drakx-backup-do-not-use-87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a.tar.gz
drakx-backup-do-not-use-87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a.tar.bz2
drakx-backup-do-not-use-87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a.tar.xz
drakx-backup-do-not-use-87ee25a82bc6b17ff1d08eb5f21a1c149dc3a28a.zip
- make printer::printerdrake::install_spooler() work with an optional $in
- many functions now take $security (which used to be taken from $in during install) - fix some functions with empty prototype but still using a parameter - remove some unused variable - rename some $_foo vars to $foo since those vars are used - add some undef to some function calls to be minimally perl_checker compliant - perl_checker compliant optional parameters in start_spooler_on_boot(), install_spooler()
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index c8e44eb4f..cefc38205 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1180,7 +1180,7 @@ sub configurePrinter {
eval { add2hash($printer, printer::main::getinfo($o->{prefix})) };
$printer->{PAPERSIZE} = $o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4';
- printer::printerdrake::main($printer, $o, $clicked, sub { install_interactive::upNetwork($o, 'pppAvoided') });
+ printer::printerdrake::main($printer, $o->{security}, $o, $clicked, sub { install_interactive::upNetwork($o, 'pppAvoided') });
}