* [PATCH] general-functions.pl: Update to fix bug #12428
@ 2020-12-30 9:34 Adolf Belka
0 siblings, 0 replies; only message in thread
From: Adolf Belka @ 2020-12-30 9:34 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1256 bytes --]
- Patch of general-functions.pl for implementation of fix provided
by Bernhard Bitsch. Prevents spaces being put into hostnames
- Patch implemented into testbed system and confirmed working
Signed-off-by: Adolf Belka <ahb.ipfire(a)gmail.com>
---
config/cfgroot/general-functions.pl | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl
index 9be1e7708..318be2c01 100644
--- a/config/cfgroot/general-functions.pl
+++ b/config/cfgroot/general-functions.pl
@@ -640,13 +640,9 @@ sub validhostname
if (length ($hostname) < 1 || length ($hostname) > 63) {
return 0;}
# Only valid characters are a-z, A-Z, 0-9 and -
- if ($hostname !~ /^[a-zA-Z0-9-\s]*$/) {
- return 0;}
- # First character can only be a letter or a digit
- if (substr ($hostname, 0, 1) !~ /^[a-zA-Z0-9]*$/) {
- return 0;}
- # Last character can only be a letter or a digit
- if (substr ($hostname, -1, 1) !~ /^[a-zA-Z0-9]*$/) {
+ # First and last character can only be letter or decimal digit
+ # else letter, decimal digits and hyphen are allowed
+ if ($hostname !~ /^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$/) {
return 0;}
return 1;
}
--
2.29.2
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-12-30 9:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-30 9:34 [PATCH] general-functions.pl: Update to fix bug #12428 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox