From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 06/16] vpnmain.cgi: Fix indentation on Apple profiles Date: Thu, 28 May 2020 17:58:40 +0000 Message-ID: <20200528175850.12638-7-michael.tremer@ipfire.org> In-Reply-To: <20200528175850.12638-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7186464873661867624==" List-Id: --===============7186464873661867624== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- html/cgi-bin/vpnmain.cgi | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/html/cgi-bin/vpnmain.cgi b/html/cgi-bin/vpnmain.cgi index 61efcc72c..f5b1186a8 100644 --- a/html/cgi-bin/vpnmain.cgi +++ b/html/cgi-bin/vpnmain.cgi @@ -1259,27 +1259,27 @@ END # Left ID if ($confighash{$key}[9]) { - print " LocalIdentifier\n"; - print " $confighash{$key}[9]\n"; + print " LocalIdentifier\n"; + print " $confighash{$key}[9]\n"; } # Right ID if ($confighash{$key}[7]) { - print " RemoteIdentifier\n"; - print " $confighash{$key}[7]\n"; + print " RemoteIdentifier\n"; + print " $confighash{$key}[7]\n"; } if ($confighash{$key}[4] eq "cert") { - print " AuthenticationMethod\n"; - print " Certificate\n"; + print " AuthenticationMethod\n"; + print " Certificate\n"; - print " PayloadCertificateUUID\n"; - print " ${cert_uuid}\n"; + print " PayloadCertificateUUID\n"; + print " ${cert_uuid}\n"; } else { - print " AuthenticationMethod\n"; - print " SharedSecret\n"; - print " SharedSecret\n"; - print " $confighash{$key}[5]\n"; + print " AuthenticationMethod\n"; + print " SharedSecret\n"; + print " SharedSecret\n"; + print " $confighash{$key}[5]\n"; } print " ExtendedAuthEnabled\n"; -- 2.20.1 --===============7186464873661867624==--