tools: ifname has max len 15
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
a42892bc28
commit
01faa9b358
@ -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, " ")) {
|
||||
|
Loading…
Reference in New Issue
Block a user