From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] ovpnmain.cgi: Fix Bug#13136 - Allow spaces when editing a static ip address pool name Date: Tue, 30 May 2023 13:13:41 +0200 Message-ID: <20230530111341.7511-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8683157892207380816==" List-Id: --===============8683157892207380816== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - This was fixed for creating a static ip address pool name in bug#12865 but = was not applied to the case when the static ip address pool name was being edited. - This fix corrects that oversight. Fixes: Bug#13136 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- html/cgi-bin/ovpnmain.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi index 5c4fad0a5..0df9fcc8c 100755 --- a/html/cgi-bin/ovpnmain.cgi +++ b/html/cgi-bin/ovpnmain.cgi @@ -494,7 +494,7 @@ sub modccdnet my %ccdhash=3D(); =20 # Check if the new name is valid. - if(!&General::validhostname($newname)) { + if(!&General::validccdname($newname)) { $errormessage=3D$Lang::tr{'ccd err invalidname'}; return; } --=20 2.40.1 --===============8683157892207380816==--