Commit e88a5211 by Serge Hallyn Committed by Stéphane Graber

fix 'lxc.mount.entry' key when clearing unexpanded config

parent 763c777b
......@@ -2252,7 +2252,7 @@ int lxc_clear_config_item(struct lxc_conf *c, const char *key)
return lxc_clear_config_keepcaps(c);
else if (strncmp(key, "lxc.cgroup", 10) == 0)
return lxc_clear_cgroups(c, key);
else if (strcmp(key, "lxc.mount.entries") == 0)
else if (strcmp(key, "lxc.mount.entry") == 0)
return lxc_clear_mount_entries(c);
else if (strcmp(key, "lxc.mount.auto") == 0)
return lxc_clear_automounts(c);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment