Merge pull request #4018 from brauner/2021-10-28.fixes.2

confile: don't use path_simplify() on lxc.{execute,init}.cmd
This commit is contained in:
Stéphane Graber 2021-10-28 13:07:49 -04:00 committed by GitHub
commit 6e8843d148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1246,13 +1246,13 @@ static int set_config_seccomp_profile(const char *key, const char *value,
static int set_config_execute_cmd(const char *key, const char *value,
struct lxc_conf *lxc_conf, void *data)
{
return set_config_path_item(&lxc_conf->execute_cmd, value);
return set_config_string_item(&lxc_conf->execute_cmd, value);
}
static int set_config_init_cmd(const char *key, const char *value,
struct lxc_conf *lxc_conf, void *data)
{
return set_config_path_item(&lxc_conf->init_cmd, value);
return set_config_string_item(&lxc_conf->init_cmd, value);
}
static int set_config_init_cwd(const char *key, const char *value,