Commit 8500665f by Christian Brauner Committed by GitHub

Merge pull request #1338 from Blub/tools-configfile

tools: lxc-start: set configfile after load_config
parents aee937d0 b586db43
......@@ -259,6 +259,11 @@ int main(int argc, char *argv[])
lxc_container_put(c);
exit(err);
}
c->configfile = strdup(my_args.rcfile);
if (!c->configfile) {
ERROR("Out of memory setting new config filename");
goto out;
}
} else {
int rc;
......
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