summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-02-16 13:23:07 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-02-16 13:23:07 +0000
commitc9a6a586e1dcb2957b437c5a5e9361d9083e47c8 (patch)
tree4f15327f2c3df6261a2b2b9a46ef16a30671007d
parentd2be90471a24417f1e02e5000cdc8960b676b2a0 (diff)
downloaddrakx-backup-do-not-use-c9a6a586e1dcb2957b437c5a5e9361d9083e47c8.tar
drakx-backup-do-not-use-c9a6a586e1dcb2957b437c5a5e9361d9083e47c8.tar.gz
drakx-backup-do-not-use-c9a6a586e1dcb2957b437c5a5e9361d9083e47c8.tar.bz2
drakx-backup-do-not-use-c9a6a586e1dcb2957b437c5a5e9361d9083e47c8.tar.xz
drakx-backup-do-not-use-c9a6a586e1dcb2957b437c5a5e9361d9083e47c8.zip
removed N() around of a non-translatable string
-rw-r--r--perl-install/network/ipsec.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/ipsec.pm b/perl-install/network/ipsec.pm
index 74ae42cd7..8e4afdf4d 100644
--- a/perl-install/network/ipsec.pm
+++ b/perl-install/network/ipsec.pm
@@ -756,7 +756,7 @@ sub already_existing_section_ipsec_conf {
#- returns the reference to the dynamical list for editing
sub dynamic_list {
my ($number, $ipsec) = @_;
- my @list = map { { label => N("%s=", $ipsec->{$number}{$_}[0]),
+ my @list = map { { label => "$ipsec->{$number}{$_}[0]" . "=",
val => \$ipsec->{$number}{$_}[1] } } ikeys %{$ipsec->{$number}};
@list;