diff options
Diffstat (limited to 'app/tools')
-rw-r--r-- | app/tools/wg-quick.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/tools/wg-quick.c b/app/tools/wg-quick.c index f3f552fd..0d4b714a 100644 --- a/app/tools/wg-quick.c +++ b/app/tools/wg-quick.c @@ -543,8 +543,8 @@ static void parse_options(char **iface, char **config, unsigned int *mtu, char * *iface = *config = *addrs = *dnses = NULL; *mtu = 0; - xregcomp(®ex_iface, "^[a-zA-Z0-9_=+.-]{1,16}$", REG_EXTENDED | REG_NOSUB); - xregcomp(®ex_conf, "/?([a-zA-Z0-9_=+.-]{1,16})\\.conf$", REG_EXTENDED); + xregcomp(®ex_iface, "^[a-zA-Z0-9_=+.-]{1,15}$", REG_EXTENDED | REG_NOSUB); + xregcomp(®ex_conf, "/?([a-zA-Z0-9_=+.-]{1,15})\\.conf$", REG_EXTENDED); if (!regexec(®ex_iface, arg, 0, NULL, 0)) { for (char *path = strtok(paths, " "); path; path = strtok(NULL, " ")) { |