diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-15 20:16:33 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-15 20:16:33 +0000 |
commit | 2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea (patch) | |
tree | 78a56468ac5faf9ce974079befcd2654f008ba94 /perl-install | |
parent | 5d0a0f5d231c9cf0b64d92e92a8291823486fcab (diff) | |
download | drakx-2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea.tar drakx-2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea.tar.gz drakx-2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea.tar.bz2 drakx-2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea.tar.xz drakx-2a2d1a22f5cf880341b18a1bd0ddd43ca2d611ea.zip |
- try to workaround #1581
- fix the most code style-independant perl checker things
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/printer/printerdrake.pm | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm index 2cc829326..8e993f949 100644 --- a/perl-install/printer/printerdrake.pm +++ b/perl-install/printer/printerdrake.pm @@ -189,14 +189,13 @@ If some of these measures lead to problems for you, turn this option off, but th $ip = $sharehosts->{invhash}{$choice}; } } - my @menu = (N("Local network(s)")); + my @menu = N("Local network(s)"); my @interfaces = printer::detect::getNetworkInterfaces(); foreach my $interface (@interfaces) { - push (@menu, - (N("Interface \"%s\"", $interface))); + push @menu, N("Interface \"%s\"", $interface); } - push (@menu, N("IP address of host/network:")); + push @menu, N("IP address of host/network:"); # Show the dialog my $address; my $oldaddress = @@ -210,7 +209,7 @@ If some of these measures lead to problems for you, turn this option off, but th complete => sub { if (($hostchoice eq N("IP address of host/network:")) && - (!printer::main::is_network_ip($ip))) { + !printer::main::is_network_ip($ip)) { $in->ask_warn('', N("The entered host/network IP is not correct.\n") . @@ -225,8 +224,7 @@ N("192.168.100.0/255.255.255.0\n") } if ($hostchoice eq $menu[0]) { $address = "\@LOCAL"; - } elsif ($hostchoice eq - $menu[$#menu]) { + } elsif ($hostchoice eq $menu[-1]) { $address = $ip; } else { ($address) = @@ -235,9 +233,9 @@ N("192.168.100.0/255.255.255.0\n") $address = "\@IF($address)"; } # Check whether item is duplicate - if (($address ne $oldaddress) && - (member($address, - @{$printer->{cupsconfig}{clientnetworks}}))) { + if ($address ne $oldaddress && + member($address, + @{$printer->{cupsconfig}{clientnetworks}})) { $in->ask_warn('', N("This host/network is already in the list, it cannot be added again.\n")); return (1,1); @@ -1495,7 +1493,7 @@ sub setup_common { # do auto-detection or when auto-detection failed my $searchunknown = N("Unknown model"); if (!$do_auto_detect || - $makemodel =~ /$searchunknown/i || + $makemodel eq $searchunknown || $makemodel =~ /^\s*$/) { local $::isWizard = 0; if (!$printer->{noninteractive}) { @@ -2066,9 +2064,9 @@ sub get_printer_info { $printer->{currentqueue}{driver} = "PPD"; } # Now get the options for this printer/driver combo - if (($printer->{configured}{$queue}) && - (($printer->{configured}{$queue}{queuedata}{foomatic}) || - ($printer->{configured}{$queue}{queuedata}{ppd}))) { + if ($printer->{configured}{$queue} && + ($printer->{configured}{$queue}{queuedata}{foomatic} || + $printer->{configured}{$queue}{queuedata}{ppd})) { if (!$newdriver) { # The user didn't change the printer/driver $printer->{ARGS} = $printer->{configured}{$queue}{args}; @@ -2757,7 +2755,7 @@ sub copy_queues_from { foreach (@oldqueues) { push @queuesselected, 1; push @queueentries, { text => $_, type => 'bool', - val => \$queuesselected[$#queuesselected] }; + val => \$queuesselected[-1] }; } # LPRng and LPD use the same config files, therefore one sees the # queues of LPD when one uses LPRng and vice versa, but these queues |