diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 01:08:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 01:08:19 +0000 |
commit | e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7 (patch) | |
tree | 5d8ac9bd4d464f80776fbded0d93152108323bdc /perl-install/printer/printerdrake.pm | |
parent | b0d554c4155060ed665844fdf7b2a08db9bb3356 (diff) | |
download | drakx-e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7.tar drakx-e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7.tar.gz drakx-e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7.tar.bz2 drakx-e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7.tar.xz drakx-e93ca98dd5aad191b20c0da0b86f21ad5e12dcd7.zip |
perl_checker adaptations
Diffstat (limited to 'perl-install/printer/printerdrake.pm')
-rw-r--r-- | perl-install/printer/printerdrake.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm index e2ea9f52b..4673992f9 100644 --- a/perl-install/printer/printerdrake.pm +++ b/perl-install/printer/printerdrake.pm @@ -2133,7 +2133,7 @@ Note: the photo test page can take a rather long time to get printed and on lase { text => N("Do not print any test page"), type => 'bool', val => \$res2 } : ()) ]); - $res2 = 1 unless $standard || $altletter || $alta4 || $photo || $ascii; + $res2 = 1 if !($standard || $altletter || $alta4 || $photo || $ascii); if ($res1 && !$res2) { my @lpq_output; { |