summaryrefslogtreecommitdiffstats
path: root/perl-install/printer.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/printer.pm')
-rw-r--r--perl-install/printer.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/printer.pm b/perl-install/printer.pm
index 42d8cfb1f..367663f9d 100644
--- a/perl-install/printer.pm
+++ b/perl-install/printer.pm
@@ -216,7 +216,7 @@ sub SIGHUP_daemon {
if ($service eq "cupsd") {$service = "cups"};
# PDQ has no daemon, exit.
if ($service eq "pdq") {return 1};
- # CUPS needs auto-configuration
+ # CUPS needs auto-correction for its configuration
run_program::rooted($prefix, "/usr/sbin/correctcupsconfig") if ($service eq "cups");
# Name of the daemon
my %daemons = (
@@ -226,7 +226,7 @@ sub SIGHUP_daemon {
"cups" => "cupsd",
"devfs" => "devfsd",
);
- my $daemon = $deamons{$service};
+ my $daemon = $daemons{$service};
$daemon = $service if (! defined $daemon);
# if ($service eq "cups") {
# # The current CUPS (1.1.13) dies on SIGHUP, do the normal restart.