diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ece51df5c..3f1d575fd 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -548,7 +548,7 @@ sub configurePrinter { my ($use_cups, $use_lpr) = (0, 0); foreach (values %{$o->{printer}{configured} || {}}) { for ($_->{mode}) { - /cups/ and $use_cups++; + /CUPS/ and $use_cups++; /lpr/ and $use_lpr++; } } |