Missing string concat

This commit is contained in:
Daniel Berteaud 2016-02-04 12:04:42 +01:00
parent e056f0a17a
commit e22a9e4942
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ if ($pwd eq 'yes' || $locked !~ m/^\d{4}\-\d{1,2}\-\d{1,2}$/ || $reply =~ m/^ena
return ""
}
$OUT .= "| /usr/bin/qmail-autoresponder " getpwnam($USERNAME)->dir . "/.lock-auto-reply\n";
$OUT .= "| /usr/bin/qmail-autoresponder " . getpwnam($USERNAME)->dir . "/.lock-auto-reply\n";
}