]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Allow '.' back in, for now
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 16 May 2024 05:54:24 +0000 (23:54 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 16 May 2024 05:54:24 +0000 (23:54 -0600)
src/lib/server/module.c

index 85e61698b857f06d95cc6e5eb6dbdd3b315459a2..7df631d90be0a03044bc787ae72330a3b537a5c4 100644 (file)
@@ -213,7 +213,7 @@ static int cmd_set_module_status(UNUSED FILE *fp, FILE *fp_err, void *ctx, fr_cm
  *
  */
 bool const module_instance_allowed_chars[UINT8_MAX + 1] = {
-       ['-'] = true, ['/'] = true, ['_'] = true,
+       ['-'] = true, ['/'] = true, ['_'] = true, ['.'] = true,
        ['0'] = true, ['1'] = true, ['2'] = true, ['3'] = true, ['4'] = true,
        ['5'] = true, ['6'] = true, ['7'] = true, ['8'] = true, ['9'] = true,
        ['A'] = true, ['B'] = true, ['C'] = true, ['D'] = true, ['E'] = true,