fixed conf file option parsing

This commit is contained in:
Logan oos Even 2021-01-16 04:00:05 +05:45 committed by GitHub
parent e1b66aeb96
commit 18107bcb7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -609,8 +609,8 @@ static int loadFromFile (const char *path, n2n_edge_conf_t *conf, n2n_tuntap_pri
line_vec[1] = strtok(line, "\t =");
// separate parameter option, if present
line_vec[2] = strtok(NULL, "\t ");
// not to duplicate the option parser code, call loadFromCLI and pretend we have no option read yet
optind = 1;
// not to duplicate the option parser code, call loadFromCLI and pretend we have no option read yet at all
optind = 0;
// if second token present (optional argument, not part of first), then announce 3 vector members
loadFromCLI(line_vec[2] ? 3 : 2, line_vec, conf, ec);
}