summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xperl-install/standalone/draksec6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec
index 231b19a82..7228e232e 100755
--- a/perl-install/standalone/draksec
+++ b/perl-install/standalone/draksec
@@ -62,10 +62,10 @@ $libsafe = $h{LIBSAFE} =~ /yes/i;
if ($in->ask_from('', _("Choose security level") . "\n\n" .
join('', map { "$l{$_}: $help{$_}\n\n" } keys %l),
[
- { label => _('Security level'), val => \$level, list => [ (values %l) ] },
+ { label => _("Security level"), val => \$level, list => [ (values %l) ] },
if_(pkgs_interactive::is_installed('libsafe') && arch() =~ /^i.86/,
- { label => _('Use libsafe for servers'), val => \$libsafe, type => 'bool', text =>
- _('A library which defends against buffer overflow and format string attacks.') }
+ { label => _("Use libsafe for servers"), val => \$libsafe, type => 'bool', text =>
+ _("A library which defends against buffer overflow and format string attacks.") }
)
]
)) {