diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 11:59:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 11:59:03 +0000 |
commit | aaff6dff3ac0e9b19810fc1bc836f30c19918e5d (patch) | |
tree | 24d563bb50162681d48011773d41f501c720d888 /perl-install/printer.pm | |
parent | 8eb45d87d70be8b1802f5f6c79cf53b3099b0596 (diff) | |
download | drakx-aaff6dff3ac0e9b19810fc1bc836f30c19918e5d.tar drakx-aaff6dff3ac0e9b19810fc1bc836f30c19918e5d.tar.gz drakx-aaff6dff3ac0e9b19810fc1bc836f30c19918e5d.tar.bz2 drakx-aaff6dff3ac0e9b19810fc1bc836f30c19918e5d.tar.xz drakx-aaff6dff3ac0e9b19810fc1bc836f30c19918e5d.zip |
make new perl_checker happy
Diffstat (limited to 'perl-install/printer.pm')
-rw-r--r-- | perl-install/printer.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/perl-install/printer.pm b/perl-install/printer.pm index 9ac3d7524..0d24d0eb8 100644 --- a/perl-install/printer.pm +++ b/perl-install/printer.pm @@ -754,7 +754,7 @@ sub read_cups_options ($) { } my $i; my $j; - my @args = (); + my @args; my $line; my $inoption = 0; my $inchoices = 0; @@ -833,7 +833,7 @@ sub read_cups_printer_list { local *F; open F, ($::testing ? "$prefix" : "chroot $prefix/ ") . "lpstat -v |" || return (); - my @printerlist = (); + my @printerlist; my $line; while ($line = <F>) { if ($line =~ m/^\s*device\s+for\s+([^:\s]+):\s*(\S+)\s*$/) { @@ -860,7 +860,7 @@ sub get_cups_remote_queues { local *F; open F, ($::testing ? "$prefix" : "chroot $prefix/ ") . "lpstat -v |" || return (); - my @printerlist = (); + my @printerlist; my $line; while ($line = <F>) { if ($line =~ m/^\s*device\s+for\s+([^:\s]+):\s*(\S+)\s*$/) { @@ -897,7 +897,7 @@ sub set_cups_autoconf { } # Remove all valid "CUPS_CONFIG" lines - (/^\s*CUPS_CONFIG/ and $_="") foreach @file_content; + (/^\s*CUPS_CONFIG/ and $_ = "") foreach @file_content; # Insert the new "Printcap" line if ($autoconf) { @@ -975,7 +975,7 @@ sub write_cupsd_conf { sub read_printers_conf { my ($printer) = @_; - my $current = undef; + my $current; #- read /etc/cups/printers.conf file. #- according to this code, we are now using the following keys for each queues. @@ -1588,7 +1588,7 @@ sub configure_hpoj { die "Could not open /etc/ptal/$ptaldevice for writing!\n"; # Write file header. - $_=`date`; + $_ = `date`; chomp; print CONFIG "# Added $_ by \"printerdrake\".\n". @@ -2169,7 +2169,7 @@ sub makestarofficeprinterentry { "BitmapColor=$color", $configfile); # Set the default paper size if ($ppd =~ /^\s*\*DefaultPageSize:\s*(\S+)\s*$/m) { - my $papersize=$1; + my $papersize = $1; $configfile = removeentry("$queue.PostScript.$queue", "PageSize=", $configfile); $configfile = removeentry("$queue.PostScript.$queue", @@ -2194,7 +2194,7 @@ sub makeopenofficeprinterentry { my $ppd = cat_("$prefix/etc/foomatic/$queue.ppd"); # "PPD_PageSize" line if ($ppd =~ /^\s*\*DefaultPageSize:\s*(\S+)\s*$/m) { - my $papersize=$1; + my $papersize = $1; $configfile = removeentry($queue, "PPD_PageSize=", $configfile); $configfile = addentry($queue, @@ -2353,7 +2353,7 @@ sub getcupsremotequeues { local *F; open F, ($::testing ? "$prefix" : "chroot $prefix/ ") . "lpstat -v |" || return (); - my @printerlist = (); + my @printerlist; my $line; while ($line = <F>) { if ($line =~ m/^\s*device\s+for\s+([^:\s]+):\s*(\S+)\s*$/) { |